PhoneGap LocalStorage 断电后还能保存吗?
即使应用程序/手机关闭并重新启动后,通过phonegap中的localstorage保存的数据是否仍然保留?如果没有,我应该使用 sqlite 吗?
Does data saved via localstorage in phonegap remains retained even after the app/phone is turn off and restarted? If not, should I be using sqlite instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,但您实际上正在使用 HTML5 Web 存储(很棒的文章此处)来存储持久数据,而不是音位间隙。
我写了一篇关于使用本地存储(在 PhoneGap / Android 上)的教程。如果您对完整教程不感兴趣,请在页面中搜索“localStorage”和“JSON”(针对 parse() 和 stringify())以获取其使用示例。
Yes, but you are actually using HTML5 web storage (great write-up here) to store the persistent data, not phonegap.
I wrote a tutorial on using local storage (on PhoneGap / Android). If you're not interested in the full tutorial, search the page for "localStorage" and "JSON" (for parse() and stringify()) for examples of their use.
android 2.3(api level 8)上的phonegap 1.4.1不会通过手机关机/开机周期通过localStorage或websql保存数据。使其无用。尝试使用 file api 代替。
phonegap 1.4.1 on android 2.3 (api level 8) does not persist data either by localStorage or websql through a phone power off/on cycle. renders it useless. trying file api instead.