HTML5 清单和 chrome
我在 Chrome 控制台中看到此错误。
Application Cache Error event: Failed to commit new cache to storage, would exceed quota
这意味着它似乎意味着什么,对吧?我的应用程序试图缓存太多数据?
有什么办法可以解决吗?
同一网站在 FF 中运行没有问题。
I am seeing this error in my console for chrome.
Application Cache Error event: Failed to commit new cache to storage, would exceed quota
it means what it seems to mean right? That my app is trying to cache too much data?
Is there anything that can be done about it?
Same site works in FF no issues.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想更改缓存大小,请使用“--disk-cache-size=N”启动 chrome。
如果您想查看缓存中的内容,只需在多功能栏中输入 about:cache 或 about:appcache-internals 即可。
有关参考文件:DOMApplicationCache 类参考 或谷歌“使用应用程序缓存的初学者指南”(我可能不会发布更多链接,很抱歉)
if you just want to change the size of your cache, start chrome with "--disk-cache-size=N".
If you want to see whats in your cache, just type about:cache or about:appcache-internals in the Omnibar.
For a reference file: DOMApplicationCache Class Reference or google "A Beginner's Guide to Using the Application Cache" (I may not post more links, I'm sorry)
当系统驱动器磁盘空间不足时,也可能会出现此错误,因此释放磁盘空间可以解决这种情况。
The error can also occur when your system drive is running low on disk space, so freeing up disk space can resolve this in this situation.