OLD | NEW |
1 --- | 1 --- |
2 layout: default | 2 layout: default |
3 title: "Target 10: Get Input from a Form" | 3 title: "Target 10: Get Input from a Form" |
4 description: "Using HTML forms and input elements to send data to a server" | 4 description: "Using HTML forms and input elements to send data to a server" |
5 has-permalinks: true | 5 has-permalinks: true |
6 tutorial: | 6 tutorial: |
7 id: forms | 7 id: forms |
| 8 next: indexeddb |
| 9 next-title: "Use IndexedDB" |
| 10 prev: fetchdata |
| 11 prev-title: "Fetch Data Dynamically" |
8 --- | 12 --- |
9 | 13 |
10 {% capture whats_the_point %} | 14 {% capture whats_the_point %} |
11 | 15 |
12 * Use forms with inputs to gather data from a user. | 16 * Use forms with inputs to gather data from a user. |
13 * Send data to the server, declaratively or programmatically. | 17 * Send data to the server, declaratively or programmatically. |
14 * Get the response from the server with HttpRequest. | 18 * Get the response from the server with HttpRequest. |
15 * Handle communication asynchronously with Futures. | 19 * Handle communication asynchronously with Futures. |
16 * Use HttpServer to set up a server to listen on a port and host. | 20 * Use HttpServer to set up a server to listen on a port and host. |
17 * Use CORS headers to set access permissions for each request. | 21 * Use CORS headers to set access permissions for each request. |
(...skipping 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
974 </li> | 978 </li> |
975 </ul> | 979 </ul> |
976 | 980 |
977 ###What next? | 981 ###What next? |
978 | 982 |
979 Try our | 983 Try our |
980 <a href="/codelabs/web-ui-writer/index.html" target="_blank"><i class="icon-beak
er"> </i>Codelab</a>. | 984 <a href="/codelabs/web-ui-writer/index.html" target="_blank"><i class="icon-beak
er"> </i>Codelab</a>. |
981 In this step-by-step guide, you’ll build a simple, | 985 In this step-by-step guide, you’ll build a simple, |
982 single-page, modern web app for desktop and mobile. | 986 single-page, modern web app for desktop and mobile. |
983 | 987 |
984 <hr> | |
985 | |
986 <div class="row"> | |
987 <div class="span3"> | |
988 <a href="/docs/tutorials/fetchdata/"><i class="icon-chevron-left"> </i> Fetch
Data Dynamically</a> | |
989 </div> | |
990 <div class="span3"> | |
991 <a href="http://code.google.com/p/dart/issues/entry?template=Tutorial%20feedback
" | |
992 target="_blank"> | |
993 <i class="icon-comment"> </i> | |
994 Send feedback | |
995 </a> | |
996 </div> | |
997 <div class="span3"> | |
998 <a href="/docs/tutorials/indexeddb/" class="pull-right">Use IndexedDB <i class
="icon-chevron-right"> </i> </a> | |
999 </div> | |
1000 </div> | |
1001 | |
1002 {% endcapture %} | 988 {% endcapture %} |
1003 | 989 |
1004 {% include tutorial.html %} | 990 {% include tutorial.html %} |
OLD | NEW |