html5离线存储准备好的db

发布于 2024-08-18 20:43:29 字数 155 浏览 7 评论 0原文

我正在尝试编写一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

稚然 2024-08-25 20:43:29

您可以使用 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:

User agents should limit the total amount of space allowed for storage
areas.

For more information, have a look at the HTML 5 Reference, or at these demos.

风吹短裙飘 2024-08-25 20:43:29

有关 html5 的更多信息,请访问 html5 参考

More information on html5 can be found at html5 reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文