What can you use HTML5's local storage for? [closed]
I was wondering what are some of the most creative and useful use cases of HTML5's local storage capabilities.
Have you ever encountered any website that uses that feature in a cool way?
In other words, what are some of the examples of places where storing user data in a browser indefinitely 开发者_如何学Ccan be used?
Any ideas are appreciated
one of the most practical reasons to use it is so that the user has some data pre populated when they start their app, i.e. the UI can show data right away, and then sync up with the server behind the scenes. Combined with an html5 manifest, this is quite powerful juju.
It's also useful for RIAs when the app wants to save data intermittently without going to the server. For example, an RIA word processor, you can store the document to local storage....
It's helpful to store your applications data while the computer is offline. Then you can synchronize the data when the computer is online again.
精彩评论