首页 > 解决方案 > 文件未缓存在 ServiceWorker 中

问题描述

我已将现有网站迁移到 PWA。我的网站非常简单,使用 HTML、JQuery 和 javascript。以前缓存机制依赖于manifest.appcache. 现在,当我尝试使用服务工作者缓存文件时,没有一个文件被缓存。我检查了我的服务人员是否已注册,一切似乎都很好,但文件没有存储在缓存中。我尝试清除缓存但没有帮助。我在下面分享我的服务工作者代码,因为它是生产代码,我无法分享所有文件名。我用这个网站来学习 PWA。

const staticCacheName = 'site-static-v4';
const dynamicCacheName = 'site-dynamic-v4';
const assets = [
  "index.shtml",
  "fallback.html",
  "manifest.webmanifest"
];

// cache size limit function
const limitCacheSize = (name, size) => {
  caches.open(name).then(cache => {
    cache.keys().then(keys => {
      if(keys.length > size){
        cache.delete(keys[0]).then(limitCacheSize(name, size));
      }
    });
  });
};

// install event
self.addEventListener('install', evt => {
  //console.log('service worker installed');
  evt.waitUntil(
    caches.open(staticCacheName).then((cache) => {
      console.log('caching shell assets');
      cache.addAll(assets);
    })
  );
});

// activate event
self.addEventListener('activate', evt => {
  //console.log('service worker activated');
  evt.waitUntil(
    caches.keys().then(keys => {
      //console.log(keys);
      return Promise.all(keys
        .filter(key => key !== staticCacheName && key !== dynamicCacheName)
        .map(key => caches.delete(key))
      );
    })
  );
});

// fetch event
self.addEventListener('fetch', evt => {
  //console.log('fetch event', evt);
  evt.respondWith(
    caches.match(evt.request).then(cacheRes => {
      return cacheRes || fetch(evt.request).then(fetchRes => {
        return caches.open(dynamicCacheName).then(cache => {
          cache.put(evt.request.url, fetchRes.clone());
          // check cached items size
          limitCacheSize(dynamicCacheName, 15);
          return fetchRes;
        })
      });
    }).catch(() => {
      if(evt.request.url.indexOf('.html') > -1){
        return caches.match('fallback.html');
      } 
    })
  );
});

下面是我的空缓存存储的屏幕截图。

在此处输入图像描述

标签: javascripthtmlprogressive-web-appsservice-workerservice-worker-events

解决方案


推荐阅读