-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsw.js
47 lines (43 loc) · 1.32 KB
/
sw.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
this.addEventListener("install", function(event) {
console.dir(event)
event.waitUntil(
caches.open("v1").then(cache => {
return cache.addAll([
'/',
'/shichagundong/index.html',
'/shichagundong/style.css',
'/shichagundong/images/1.jpg',
'/shichagundong/images/2.jpg',
'/shichagundong/images/3.jpg',
'/shichagundong/images/4.jpg',
'/shichagundong/images/5.jpg',
'/shichagundong/images/6.jpg',
'/wushiyin/index.html',
'/wushiyin/style.css',
'/wushiyin/images/bg.jpg',
])
}).catch(error => {
console.log(error)
})
)
})
this.addEventListener('fetch', function(event) {
event.respondWith(caches.match(event.request).then(function(response) {
// caches.match() always resolves
// but in case of success response will have value
if (response !== undefined) {
return response;
} else {
return fetch(event.request).then(function (response) {
// response may be used only once
// we need to save clone to put one copy in cache
// and serve second one
let responseClone = response.clone();
caches.open('v1').then(function (cache) {
cache.put(event.request, responseClone);
});
return response;
});
}
}));
});