增加 iPad 10MB 缓存限制
我们有一个网络应用程序应该可以在 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 技术交流群。
发布评论
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
您可以查看这个。
在使用
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