我在service-worker
中遇到缓存问题。记录和未记录的用户内容将被缓存。即使登录,用户也会查看未记录的用户标题。
importScripts("{% static 'js/cache-polyfill.js' %}");
self.addEventListener('install', function(e) {
e.waitUntil(
caches.open('testv1').then(function(cache) {
return cache.addAll([
"/",
"{% static 'assets/css/all.css' %}",
"{% static 'assets/js/all.js' %}",
]);
})
);
});
self.addEventListener('fetch', function(event) {
event.respondWith(
caches.match(event.request).then(function(response) {
return response || fetch(event.request);
})
);
});
答案 0 :(得分:0)
我找到了解决方案。我需要根据我的需要更改我的EventListener fetch
:不断更新。 (Source)
self.addEventListener('fetch', function(event) {
event.respondWith(
caches.open('mysite-dynamic').then(function(cache) {
return fetch(event.request).then(function(response) {
cache.put(event.request, response.clone());
return response;
});
})
);
});