我构建了一个渐进式Web应用程序https://www.tavest.com。 我不明白为什么我的服务工作者也被缓存在Chrome中? https://www.tavest.com/service-worker-tavest.js因此,当我更改服务工作者时,chrome没有检测到更改,因此服务工作者没有更新。
尽管我多次刷新页面,但它仍然是相同的。但是,在Mozilla中,它的工作正常。 这是我安装服务工作者的代码
if ('serviceWorker' in navigator && (window.location.protocol === 'https:')) {
navigator.serviceWorker.register('/service-worker-tavest.js')
.then(function(registration) {
// updatefound is fired if service-worker.js changes.
registration.onupdatefound = function() {
// updatefound is also fired the very first time the SW is installed,
// and there's no need to prompt for a reload at that point.
// So check here to see if the page is already controlled,
// i.e. whether there's an existing service worker.
if (navigator.serviceWorker.controller) {
// The updatefound event implies that registration.installing is set:
// https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#service-worker-container-updatefound-event
var installingWorker = registration.installing;
installingWorker.onstatechange = function() {
switch (installingWorker.state) {
case 'installed':
// At this point, the old content will have been purged and the
// fresh content will have been added to the cache.
// It's the perfect time to display a "New content is
// available; please refresh." message in the page's interface.
console.warn('New content is available, please refresh the page');
break;
case 'redundant':
throw new Error('The installing ' +
'service worker became redundant.');
default:
// Ignore
}
};
}
};
}).catch(function(e) {
console.error('Error during service worker registration:', e);
});
}

感谢您的帮助
热烈的问候,
答案 0 :(得分:4)
这是因为服务工作者只是一个普通的JS文件,它将被浏览器缓存。
您可以将no-cache
标头设置为/service-worker-tavest.js
,以便浏览器停止缓存您的服务工作文件。这样,您可以在上传新文件时立即更新服务工作者。
以下是如何在Nginx中执行此操作:
location /service-worker-tavest.js {
# Don't use browser cache for service worker file
add_header cache-control "no-store, no-cache, must-revalidate";
}
答案 1 :(得分:2)
我想我知道有关此缓存的答案。 这是因为"服务工作者生命周期"在Chrome中。
https://www.youtube.com/watch?v=TF4AB75PyIc
结论:Chrome浏览器中的缓存是可以的,因为chrome会自行更新服务工作者。