I'm preparing a web app that targets the iPhone It's like a to-do list, capable of working offline An application is required to be, i.e., when the user has no connection to the server, then the user should allow to add / edit / delete entries, which will later be synchronized when the server is online.
How do you advise that I store this data (remember that this is a web app) client side? I think cookies are not safe to use because they can be cleaned at some point. I understand that Dojo and Exstage provide support for both client-side data stores - which will provide the best performance during the library lean and mean? Why should I check other libraries? Do any of these options provide synchronization capabilities with server-side data store?
Mobile Safari is WebKit based and is equipped with HTML5-based client-side database storage. See this.
If your web application is only an iPhone, then it's definitely the direction that you should go.
Comments
Post a Comment