OLD | NEW |
1 <div id="pageData-name" class="pageData">Manage Data</div> | 1 <h1>Manage Data</h1> |
2 <div id="pageData-showTOC" class="pageData">true</div> | 2 |
3 | 3 |
4 <p> | 4 <p> |
5 Almost every aspect of app development involves some element | 5 Almost every aspect of app development involves some element |
6 of sending or receiving data. | 6 of sending or receiving data. |
7 Starting with the basics, | 7 Starting with the basics, |
8 you should use an MVC framework to help you design and implement your app | 8 you should use an MVC framework to help you design and implement your app |
9 so that data is completely separate from the app's view on that data | 9 so that data is completely separate from the app's view on that data |
10 (see <a href="app_frameworks.html">MVC Architecture</a>). | 10 (see <a href="app_frameworks.html">MVC Architecture</a>). |
11 </p> | 11 </p> |
12 | 12 |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 writableFileEntry.createWriter(function(writer) { | 219 writableFileEntry.createWriter(function(writer) { |
220 writer.onerror = errorHandler; | 220 writer.onerror = errorHandler; |
221 writer.onwriteend = function(e) { | 221 writer.onwriteend = function(e) { |
222 console.log('write complete'); | 222 console.log('write complete'); |
223 }; | 223 }; |
224 writer.write(new Blob(['1234567890'], {type: 'text/plain'})); | 224 writer.write(new Blob(['1234567890'], {type: 'text/plain'})); |
225 }, errorHandler); | 225 }, errorHandler); |
226 }); | 226 }); |
227 </pre> | 227 </pre> |
228 | 228 |
229 <p class="backtotop"><a href="#top">Back to top</a></p> | 229 <p class="backtotop"><a href="#top">Back to top</a></p> |
230 | |
OLD | NEW |