增加 iPad 10MB 缓存限制

发布于 12-03 06:37 字数 172 浏览 0 评论 0原文

我们有一个网络应用程序应该可以在 iPad 上离线工作。它使用清单来定义哪些文件需要缓存。关键是我们已经达到了 iPad 存储这些文件的 10MB 限制,并且我们需要向列表中添加更多文件。

是否有任何解决方法可以增加此限制,或以任何其他方式存储文件?请注意,目前还不能选择本地化。

We have a web application that is supposed to work offline on iPads. It's using manifest to define which files need to be cached. The point is that we have reached the 10MB limit the iPad has to store those files, and we need to add even more files to the list.

Is there any workaround to increase this limit, or store the files in any other way? Note that going native is not an option at this moment.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

慕巷2024-12-10 06:37:01

您可以查看这个

在使用 window.applicationCache.update() 更新缓存之前,尝试重复以小于 5MB 的块增加清单的过程,您应该能够通过 10MB 的限制

You could take a look at this.

Try repeating the process of increasing the manifest in chunks less than 5MB before updating the cache with window.applicationCache.update() and you should be able to pass the 10mb limit

⒈起吃苦の倖褔2024-12-10 06:37:01

据我了解,你可以这样做:

cache.manifest是一个用PHP生成的文件,在第一代它返回小于5Mb的文件列表并设置一个cookie标志。 “cached”事件上的客户端脚本检查 cookie 是否已设置并调用 window.applicationCache.update(),以便 PHP 代码再次运行,它会检查 cookie 是否已设置并返回完整的 cache.manifest 文件,更新 cookie 标志

as i understand you can do trick like this:

cache.manifest is a file generated with PHP, on first generation it returns file list less then 5Mb and sets a cookie flag. client side script on 'cached' event checks if cookie set and calls window.applicationCache.update() so PHP code runs again it checks if cookie set and return full cache.manifest file, updates cookie flag

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