Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(784)

Side by Side Diff: src/site/docs/tutorials/fetchdata/index.markdown

Issue 24269013: first draft of polymer element tutorial (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 --- 1 ---
2 layout: default 2 layout: default
3 title: "Fetch Data Dynamically" 3 title: "Fetch Data Dynamically"
4 description: "Use HttpRequest to fetch data from a file or a server." 4 description: "Use HttpRequest to fetch data from a file or a server."
5 has-permalinks: true 5 has-permalinks: true
6 tutorial: 6 tutorial:
7 id: fetchdata 7 id: fetchdata
8 next: forms/ 8 next: forms/
9 next-title: "Get Input from a Form" 9 next-title: "Get Input from a Form"
10 prev: custom-elements/ 10 prev: polymer-intro/
11 prev-title: "Define a Custom DOM Tag" 11 prev-title: "Define a Custom Element"
12 --- 12 ---
13 13
14 {% capture whats_the_point %} 14 {% capture whats_the_point %}
15 15
16 * Data on the web is often formatted in JSON. 16 * Data on the web is often formatted in JSON.
17 * JSON is text based and human readable. 17 * JSON is text based and human readable.
18 * The dart:json library provides support for JSON. 18 * The dart:json library provides support for JSON.
19 * Use HttpRequest to dynamically load data. 19 * Use HttpRequest to dynamically load data.
20 20
21 {% endcapture %} 21 {% endcapture %}
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 466
467 Check out Chris Buckett's article, 467 Check out Chris Buckett's article,
468 <a href="/articles/json-web-service/" 468 <a href="/articles/json-web-service/"
469 target="_blank">Using Dart with JSON Web Services</a>, 469 target="_blank">Using Dart with JSON Web Services</a>,
470 for more information and an example with source code for both 470 for more information and an example with source code for both
471 client and server programs. 471 client and server programs.
472 472
473 {% endcapture %} 473 {% endcapture %}
474 474
475 {% include tutorial.html %} 475 {% include tutorial.html %}
OLDNEW
« no previous file with comments | « src/site/docs/tutorials/fetchdata/images/set-callback.png ('k') | src/site/docs/tutorials/get-started/images/gs-banner.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698