Using service workers to both use cache *and* update in background(使用服务工作人员在后台同时使用缓存*和*更新)
问题描述
我知道ServiceWorkers可以从缓存的网络请求中捕获响应。
也就是说,是否可以让这些工作进程在后台继续更新缓存?
考虑以下场景:用户登录到缓存了数据的应用程序后,会立即看到"Welcome, <cached_username>!"
服务工作者是否可以在提供缓存匹配后继续发出网络请求?用户本可以在其他设备上将其用户名更新为new_username
,如果最终获得一致的用户界面就太好了。
我仍然希望发出网络请求,同时还利用ServiceWorker进行快速初始呈现。
推荐答案
您所描述的内容与stale-while-revalidate strategy非常相似。
不过,该食谱中的基本食谱不包括任何代码,用于在重新验证步骤发现更新时让服务人员通知客户端页面。
如果您要在服务工作人员中使用Workbox,则可以使用workbox-broadcast-update
module和其他几个模块来完成通知步骤:
在您的服务人员中:
import {registerRoute} from 'workbox-routing';
import {StaleWhileRevalidate} from 'workbox-strategies';
import {BroadcastUpdatePlugin} from 'workbox-broadcast-update';
registerRoute(
// Adjust this to match your cached data requests:
new RegExp('/api/'),
new StaleWhileRevalidate({
plugins: [
new BroadcastUpdatePlugin(),
],
})
);
在您的Web应用中:
navigator.serviceWorker.addEventListener('message', async (event) => {
// Optional: ensure the message came from workbox-broadcast-update
if (event.data.meta === 'workbox-broadcast-update') {
const {cacheName, updatedUrl} = event.data.payload;
// Do something with cacheName and updatedUrl.
// For example, get the cached content and update
// the content on the page.
const cache = await caches.open(cacheName);
const updatedResponse = await cache.match(updatedUrl);
const updatedText = await updatedResponse.text();
}
});
这篇关于使用服务工作人员在后台同时使用缓存*和*更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用服务工作人员在后台同时使用缓存*和*更新
- Flexslider 箭头未正确显示 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01