编程语言
首页 > 编程语言> > javascript – 服务工作者也被缓存在Chrome中?

javascript – 服务工作者也被缓存在Chrome中?

作者:互联网

我构建了一个Progressive Web App,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);
      });
    }

谢谢您的帮助

温暖的问候,

解决方法:

这是因为服务工作者只是一个普通的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";
}

标签:javascript,google-chrome,progressive-web-apps
来源: https://codeday.me/bug/20190527/1164740.html