This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The has() method of the CacheStorage interface returns a Promise that resolves to true if a Cache object matches the cacheName.
caches.has(cacheName).then(function(boolean) {
// true: your cache exists!
});
a Promise that resolves to true if the cache exists or false if not.
DOMString representing the name of the Cache object you are looking for in the CacheStorage.The following example first checks whether a cache called 'v1' exists. If so, we add a list of assets to it. If not (meaning the has() promise would reject) then we run some kind of cache set-up function.
caches.has('v1').then(function(hasCache) {
if (!hasCache) {
someCacheSetupfunction();
} else {
caches.open('v1').then(function(cache) {
return cache.addAll(myAssets);
});
}
}).catch(function() {
// Handle exception here.
}); | Specification | Status | Comment |
|---|---|---|
| Service Workers The definition of 'CacheStorage' in that specification. | Editor's Draft | Initial definition. |
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Basic support | 40.0 | (Yes) | 44 (44)[1] | No support | ? | No support |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
|---|---|---|---|---|---|---|---|
| Basic support | No support | No support | 44.0 (44) | (Yes) | (Yes) | (Yes) | 40.0 |
[1] Service workers (and Push) have been disabled in the Firefox 45 & 52 Extended Support Releases (ESR.)
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CacheStorage/has