使用 Service Worker 捕获网络错误
Using service worker to catch network error
我的网站有一个服务人员,但我不确定在出现网络错误时如何处理它,我已经查看了 Mozilla 的指南,但是当我 运行 工作人员离线它说网络错误已传递给 respondWith
函数,并且 catch promise 似乎没有响应缓存数据。
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);
});
});
错误日志显示如下:
您在调用 event.respondWith
的结果上调用 then
,这是未定义的。
您应该在调用 catch
之后链接您的 then
调用:
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;
我的网站有一个服务人员,但我不确定在出现网络错误时如何处理它,我已经查看了 Mozilla 的指南,但是当我 运行 工作人员离线它说网络错误已传递给 respondWith
函数,并且 catch promise 似乎没有响应缓存数据。
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);
});
});
错误日志显示如下:
您在调用 event.respondWith
的结果上调用 then
,这是未定义的。
您应该在调用 catch
之后链接您的 then
调用:
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;