OLD | NEW |
1 --- | 1 --- |
2 layout: default | 2 layout: default |
3 title: "Target 11: Use IndexedDB" | 3 title: "Target 11: Use IndexedDB" |
4 description: "Use IndexedDB for persistence and offline capability for your app.
" | 4 description: "Use IndexedDB for persistence and offline capability for your app.
" |
5 has-permalinks: true | 5 has-permalinks: true |
6 tutorial: | 6 tutorial: |
7 id: indexeddb | 7 id: indexeddb |
| 8 next: index.html |
| 9 next-title: "Home" |
| 10 prev: forms |
| 11 prev-title: "Get Input from a Form" |
8 --- | 12 --- |
9 | 13 |
10 {% capture whats_the_point %} | 14 {% capture whats_the_point %} |
11 | 15 |
12 * IndexedDB is a new standard for client-side storage in modern web browsers. | 16 * IndexedDB is a new standard for client-side storage in modern web browsers. |
13 * Client-side storage provides persistence, offline capability, | 17 * Client-side storage provides persistence, offline capability, |
14 and other advantages. | 18 and other advantages. |
15 * IndexedDB lets you store significant amounts of structured data. | 19 * IndexedDB lets you store significant amounts of structured data. |
16 * Indices allow for high performance searches. | 20 * Indices allow for high performance searches. |
17 * The dart:indexed_db library provides the API for IndexedDB for Dart apps. | 21 * The dart:indexed_db library provides the API for IndexedDB for Dart apps. |
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
728 </li> | 732 </li> |
729 </ul> | 733 </ul> |
730 | 734 |
731 ###What next? | 735 ###What next? |
732 | 736 |
733 Check out our | 737 Check out our |
734 <a href="/codelabs/web-ui-writer/index.html" target="_blank"><i class="icon-beak
er"> </i>Codelab</a>; | 738 <a href="/codelabs/web-ui-writer/index.html" target="_blank"><i class="icon-beak
er"> </i>Codelab</a>; |
735 it uses LocalStorage instead of IndexedDB to store data in the client. | 739 it uses LocalStorage instead of IndexedDB to store data in the client. |
736 Try converting it to use IndexedDB. | 740 Try converting it to use IndexedDB. |
737 | 741 |
738 <hr> | |
739 | |
740 <div class="row"> | |
741 <div class="span3"> | |
742 <a href="/docs/tutorials/forms/"><i class="icon-chevron-left"> </i> Get Input
from a Form</a> | |
743 </div> | |
744 <div class="span3"> | |
745 <a href="http://code.google.com/p/dart/issues/entry?template=Tutorial%20feedback
" | |
746 target="_blank"> | |
747 <i class="icon-comment"> </i> | |
748 Send feedback | |
749 </a> | |
750 </div> | |
751 <div class="span3"> | |
752 <a href="/docs/tutorials/" class="pull-right">Home <i class="icon-chevron-righ
t"> </i> </a> | |
753 </div> | |
754 </div> | |
755 | |
756 {% endcapture %} | 742 {% endcapture %} |
757 | 743 |
758 {% include tutorial.html %} | 744 {% include tutorial.html %} |
OLD | NEW |