forked from avodo-studio/vue-awesome-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
34 lines (31 loc) · 784 Bytes
/
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
const CACHE_NAME = 'vap-cache-7'
const cacheUrls = [
'./',
'./dist/vue-awesome-picker.js',
'./static/img/vue-logo.png'
]
self.addEventListener('install', (event) => {
event.waitUntil( // 确保在缓存之后完成 install
caches.open(CACHE_NAME).then(cache => cache.addAll(cacheUrls))
)
})
self.addEventListener('fetch', (event) => {
event.respondWith(
caches.match(event.request).then((response) => {
return response || fetch(event.request)
})
)
})
self.addEventListener('activate', (event) => {
event.waitUntil(
caches.keys().then((cacheKeys) => {
return Promise.all(
cacheKeys.map((cacheKey) => {
if (cacheKey !== CACHE_NAME) {
return caches.delete(cacheKey)
}
})
)
})
)
})