有没有 Html5 应用程序缓存加载器工具?

发布于 2024-12-11 09:37:31 字数 239 浏览 0 评论 0原文

一旦您掌握了应用程序缓存,是否有任何工具可以将应用程序缓存加载到浏览器缓存中?

假设我的应用程序缓存清单(例如 example.appcache)包含以下内容

CACHE MANIFEST
# v1.0

CACHE:
1.html
2.html
3.html

,并且我手头有缓存文件,我是否能够将内容部署到浏览器缓存? (在 Chrome 浏览器中)

提前致谢!

Is there any tool that can load an application cache to the browser cache once you have the application cache in hand?

say my app cache manifest (say example.appcache) contains the following content

CACHE MANIFEST
# v1.0

CACHE:
1.html
2.html
3.html

and i have the cache files in hand will i be able to deploy the content to the browser cache? ( in chrome browser )

Thanks in advance!

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

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

发布评论

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

评论(1

柠檬心 2024-12-18 09:37:31

Craig Shoemaker 引用的文章中的相关部分是这样的:

要以编程方式更新缓存,请首先调用 applicationCache.update()。这将尝试更新用户的缓存(这要求清单文件已更改)。最后,当 applicationCache.status 处于 UPDATEREADY 状态时,调用 applicationCache.swapCache() 会将旧缓存交换为新缓存。

The relevant section from the article referenced by Craig Shoemaker is this:

To programmatically update the cache, first call applicationCache.update(). This will attempt to update the user's cache (which requires the manifest file to have changed). Finally, when the applicationCache.status is in its UPDATEREADY state, calling applicationCache.swapCache() will swap the old cache for the new one.

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