html5离线存储准备好的db
我正在尝试编写一个 iPhone Web 应用程序,在离线时显示来自小型数据库的信息。是否可以准备一个数据库并下载它,而不是下载其他格式的数据并在首次使用时创建它?
如果我必须创建数据库,发送数据的好格式是什么(例如压缩的xml?)?
本地数据库有最大存储限制吗?
I'm trying to write an iphone web app displaying info from a small ish database while offline. Is it possible to prepare a db and download that rather than downloading the data in some other format and creating it on first use?
if i have to create db, what would be a good format (is there eg compressed xml?) to send data?
is there a maximum storage limit for local dbs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 HTML 5 存储将其存储为一大块 XML,也可以使用 Web 数据库存储将其存储为数据库 - Web 浏览器更好地支持纯存储(例如,最新的 Firefox 似乎仅支持前者)。
其次,HTML 5 标准中没有定义大小限制 - 它只是指出:
有关详细信息,请查看 HTML 5 参考,或访问这些演示。
You could either store it as a large chunk of XML, using HTML 5 Storage, or as a database using Web Database Storage - plain storage is better suported by web browsers (Latest Firefox only seems to suppor the former, for instance).
Secondly, there is no size limit defined in the HTML 5 standard - it simply states:
For more information, have a look at the HTML 5 Reference, or at these demos.
有关 html5 的更多信息,请访问 html5 参考
More information on html5 can be found at html5 reference