1

不久前,我使用 appcache 构建了一个离线的第一个应用程序,并希望将其转换为使用 service-worker(我的客户都使用最新的 chrome,所以我没有任何浏览器兼容性问题)。

我正在使用 sw-precache 生成一个缓存我的本地资产(特别是我的 html/css/fonts 和一些 js)的服务工作者,看起来当服务工作者安装时,它确实成功添加了所有资产缓存存储并且它确实成功启动(安装并激活火并成功完成。我在安装事件结束时有 self.skipWaiting() 来启动服务工作者(它也成功地完成了))。

问题是“获取”事件似乎永远不会触发。因此,如果我离线或打开浏览器(虽然已经离线)并导航到该站点,我会得到 Chrome 离线恐龙。当我查看网络选项卡时,看起来浏览器正在尝试访问服务器以检索页面。我不确定自己做错了什么,也没有触及 sw-precache 实用程序生成的 fetch 方法......所以我不确定我错过了什么。任何帮助将不胜感激。我的 fetch 事件如下:

self.addEventListener('fetch', function(event) {
  if (event.request.method === 'GET') {
     var urlWithoutIgnoredParameters = stripIgnoredUrlParameters(event.request.url,
  IgnoreUrlParametersMatching);

var cacheName = AbsoluteUrlToCacheName[urlWithoutIgnoredParameters];
var directoryIndex = 'index.html';
if (!cacheName && directoryIndex) {
  urlWithoutIgnoredParameters = addDirectoryIndex(urlWithoutIgnoredParameters, directoryIndex);
  cacheName = AbsoluteUrlToCacheName[urlWithoutIgnoredParameters];
}

var navigateFallback = '';
// Ideally, this would check for event.request.mode === 'navigate', but that is not widely
// supported yet:
// https://code.google.com/p/chromium/issues/detail?id=540967
// https://bugzilla.mozilla.org/show_bug.cgi?id=1209081
if (!cacheName && navigateFallback && event.request.headers.has('accept') &&
    event.request.headers.get('accept').includes('text/html') &&
    /* eslint-disable quotes, comma-spacing */
    isPathWhitelisted([], event.request.url)) {
    /* eslint-enable quotes, comma-spacing */
  var navigateFallbackUrl = new URL(navigateFallback, self.location);
  cacheName = AbsoluteUrlToCacheName[navigateFallbackUrl.toString()];
}

if (cacheName) {
  event.respondWith(
    // Rely on the fact that each cache we manage should only have one entry, and return that.
    caches.open(cacheName).then(function(cache) {
      return cache.keys().then(function(keys) {
        return cache.match(keys[0]).then(function(response) {
          if (response) {
            return response;
          }
          // If for some reason the response was deleted from the cache,
          // raise and exception and fall back to the fetch() triggered in the catch().
          throw Error('The cache ' + cacheName + ' is empty.');
        });
      });
    }).catch(function(e) {
      console.warn('Couldn\'t serve response for "%s" from cache: %O', event.request.url, e);
      return fetch(event.request);
    })
  );
}

} });

4

0 回答 0