缓存清单:离线时,用单个“您离线”替换所有页面页?

发布于 2024-12-02 12:14:01 字数 195 浏览 2 评论 0原文

我正在尝试找出缓存清单是否可行。

我有一个大约 5 页的移动网络应用程序。他们都需要联系才能以有意义的方式工作。

我想优雅地处理用户离线的可能性。

那么,当用户离线时,是否可以使用缓存清单将网站上的每个页面替换为另一个“仅限离线”页面?

我希望这就是缓存清单的 FALLBACK 部分所做的事情,但似乎并非如此。

I'm trying to work out if something is possible with cache-manifest.

I have a mobile web app with about 5 pages. They all require connection to work in a meaningful way.

I'd like to handle gracefully the possibility that the user is offline.

So, would it be possible to use cache-manifest to replace every page on the site with another, "offline-only" page, while the user is offline?

I was hoping this was what the FALLBACK section of cache-manifest does, but it seems not.

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

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

发布评论

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

评论(1

浅唱ヾ落雨殇 2024-12-09 12:14:01

它确实有效,你的后备部分应该如下所示:

FALLBACK:
/ offline.html

如果你从根目录中的页面引用它,那么你输入的任何随机字符串都将导致离线.html 被加载,包括不存在的页面,无论服务器是否存在在线与否。

我猜您遇到的问题是引用清单的任何页面总是被缓存。因此,如果您从五个页面中的每一个页面引用了清单文件,那么所有这些页面都将位于应用程序缓存中。

一种可能有效的方法(我没有尝试过):专门创建一个新页面来引用清单文件,并在用户第一次访问时将其重定向到该页面。您可以在页面上放置一些内容,例如“初始化应用程序”。验证应用程序缓存已加载 JavaScript,然后重定向回它们来自的页面。

It does work, your fallback section should look like this:

FALLBACK:
/ offline.html

If you reference that from a page in the root then any random string you type in will result in offline.html being loaded, including pages which don't exist, whether the server is online or not.

I'm guessing that the issue you're seeing is that any page which references the manifest is always cached. So if you've referenced the manifest file from each of your five pages then all of those pages will be in the Application Cache.

One approach which might work (I've not tried it): create a new page specifically to reference the manifest file and redirect your users to it when they first visit. You could put some content on the page like 'initializing application'. Verify the Application Cache has been loaded with JavaScript, then redirect back to the page they came from.

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