我有一个服务工作者为我的网站,但我不知道如何在网络出现错误时处理它,我查看了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);
});
});
答案 0 :(得分:5)
您正在调用then
调用event.respondWith
的结果,这是未定义的。
在致电then
后,您应该将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;