1

我正在使用 workbox 和 vuejs,我想在public/offline.html没有互联网连接时提供页面。

我编辑 pwa 部分以vue.config.js自己处理服务人员:

  pwa: {
    name: 'myapp',
    workboxPluginMode: 'InjectManifest',
    workboxOptions: {
      swSrc: path.resolve(__dirname, 'src/pwa/service-worker.js')
    }
  },

我在以下代码中添加了支持离线服务页面的代码service-worker.js

console.log('in pwa');

self.addEventListener('message', (event) => {
  if (event.data && event.data.type === 'SKIP_WAITING') {
    self.skipWaiting();
  }
});

// The precaching code provided by Workbox. You don't need to change this part.
self.__precacheManifest = [].concat(self.__precacheManifest || []);
// workbox.precaching.suppressWarnings()
workbox.precaching.precacheAndRoute(self.__precacheManifest, {});

self.addEventListener("fetch", function(event) {
  event.respondWith(
      fetch(event.request).catch(function() {
          return caches.match(event.request).then(function(response) {
              if (response) {
                  return response;
              } else if (event.request.headers.get("accept").includes("text/html")) {
                  return caches.match(workbox.precaching.getCacheKeyForURL('/offline.html'));
              }
          });
      })
  );
});

因此,当我访问www.myapp.com/enwww.myapp.com/en/about获得离线页面时。

但问题是当我访问时www.myapp.com- 工作箱是从缓存中提供 index.html 文件。

我可以从缓存中删除 index.html,但是当我在线时,我确实想从缓存中提供索引。

所以我在这里进退两难,怎么办?

4

0 回答 0