编程语言
首页 > 编程语言> > javascript – 使用服务工作者来捕获网络错误

javascript – 使用服务工作者来捕获网络错误

作者:互联网

我有一个服务工作者为我的网站,但我不知道如何在出现网络错误时处理它,我查看了Mozilla的指南,但是当我离线运行工作程序时,它说网络错误已通过对于respondWith函数,catch承诺似乎没有响应缓存数据.

this.addEventListener('install', function(event) {
  event.waitUntil(
    caches.open('v1').then(function(cache) {
      return cache.addAll([
        '/',
        '/favicon.ico',
        '/f3be2e30f119a1a9b0fdee9fc1f477a9',
        '/index.html',
        '/sw.js'
      ]);
    })
  );
});

this.addEventListener('fetch', function(event) {
    var response;
    event.respondWith(caches.match(event.request).catch(function() {
        return fetch(event.request);
    })).then(function(r) {
        response = r;
        caches.open('v1').then(function(cache) {
            cache.put(event.request, response);
        });
        return response.clone();
    }).catch(function(event) {
        console.log(event, 'borken');
        return caches.match(event.request);
    });
});

错误日志显示在此处:
Error log

解决方法:

然后你调用event.respondWith调用的结果,这是未定义的.

你应该在调用catch之后链接你的调用:

var response;
event.respondWith(
  caches.match(event.request)
  .catch(function() {
    return fetch(event.request);
  })
  .then(function(r) {
    response = r;

不:

var response;
event.respondWith(
  caches.match(event.request)
  .catch(function() {
    return fetch(event.request);
  })
)
.then(function(r) {
  response = r;

标签:javascript,offline-caching,service-worker
来源: https://codeday.me/bug/20190608/1201176.html