我已经在某些Web应用程序中实现了ServiceWorker,以利用离线功能和与ServiceWorkers相关的其他优点。现在,一切正常,直到我添加了一些外部嵌入式脚本。我已经在我的web应用程序中添加了大约3个外部脚本。其中一些获取广告并将其显示在我的应用程序上,还有一些用于收集分析数据。
但是,令我惊讶的是,启用ServiceWorkers并在控制台中抛出以下错误时,每个外部脚本都失败了
我不确定为什么会这样吗?我是否必须在ServiceWorker中以某种方式缓存这些脚本?任何帮助将不胜感激。
这是我在应用程序中添加的ServiceWorker代码。
importScripts('js/cache-polyfill.js');
var CACHE_VERSION = 'app-v18';
var CACHE_FILES = [
'/',
'index.html',
'js/app.js',
'js/jquery.min.js',
'js/bootstrap.min.js',
'css/bootstrap.min.css',
'css/style.css',
'favicon.ico',
'manifest.json',
'img/icon-48.png',
'img/icon-96.png',
'img/icon-144.png',
'img/icon-196.png'
];
self.addEventListener('install', function (event) {
event.waitUntil(
caches.open(CACHE_VERSION)
.then(function (cache) {
console.log('Opened cache');
return cache.addAll(CACHE_FILES);
})
);
});
self.addEventListener('fetch', function (event) {
event.respondWith(
caches.match(event.request).then(function(res){
if(res){
return res;
}
requestBackend(event);
})
)
});
function requestBackend(event){
var url = event.request.clone();
return fetch(url).then(function(res){
//if not a valid response send the error
if(!res || res.status !== 200 || res.type !== 'basic'){
return res;
}
var response = res.clone();
caches.open(CACHE_VERSION).then(function(cache){
cache.put(event.request, response);
});
return res;
})
}
self.addEventListener('activate', function (event) {
event.waitUntil(
caches.keys().then(function(keys){
return Promise.all(keys.map(function(key, i){
if(key !== CACHE_VERSION){
return caches.delete(keys[i]);
}
}))
})
)
});
答案 0 :(得分:1)
这是我为解决此问题所做的事情。
我尝试检查应用程序是否在线,或者未使用fetch
事件监听器中的Navigator.onLine API,并且是否在线,然后从服务器提供响应,而从ServiceWorker
提供响应。这样,当应用程序在线时,请求不会被阻止,从而解决了此特定问题。
这是我的实现方式。
self.addEventListener('fetch', function (event) {
let online = navigator.onLine;
if(!online){
event.respondWith(
caches.match(event.request).then(function(res){
if(res){
return res;
}
requestBackend(event);
})
)
}
});
您还可以在此处检查整个ServiceWorker脚本:https://github.com/amitmerchant1990/notepad/blob/master/sw.js