admin管理员组文章数量:1415111
What can cause a Promise rejected with 'InvalidStateError'
here ?
const SERVICE_WORKER_VERSION = "3.0.0"; // is updated in the build when things change
const CACHE_VERSION = SERVICE_WORKER_VERSION;
const fillServiceWorkerCache = function () {
/* save in cache some static ressources
this happens before activation */
return caches.open(CACHE_VERSION).then(function(cache) {
return cache.addAll(ressourcesToSaveInCache);
});
};
self.addEventListener("install", function (event) {
/*event.waitUntil takes a promise that should resolves successfully*/
event.waitUntil(fillServiceWorkerCache().then(function() {
return self.skipWaiting();
}));
});
On Firefox version 52 the following error occurs: Service worker event waitUntil() was passed a promise that rejected with 'InvalidStateError: An attempt was made to use an object that is not, or is no longer, usable'.
The service worker is killed and removed after that. It works fine with Chrome. ressourcesToSaveInCache
is an array of relative URLs.
Edit changing it to
event.waitUntil(
fillServiceWorkerCache()
.then(skipWaiting)
.catch(skipWaiting)
);
and the service worker registers ! However fillServiceWorkerCache
rejected , which is a big deal (no offline cache). Now the question is why does fillServiceWorkerCache
reject, and what is the error message trying to tell ?
Edit inspired by Hosar's answer:
const fillServiceWorkerCache2 = function () {
return caches.open(CACHE_VERSION).then(function (cache) {
return Promise.all(
ressourcesToSaveInCache.map(function (url) {
return cache.add(url).catch(function (reason) {
return console.log(url + "failed: " + String(reason));
})
})
);
});
};
This version propagates a promise in the return chain, making the waitUntil()
actually wait for it. It will not cache and also not reject for individual ressources that failed to be added in the cache.
Edit 2: After fixing invalid relative URLs in ressourcesToSaveInCache, the error was gone
What can cause a Promise rejected with 'InvalidStateError'
here ?
const SERVICE_WORKER_VERSION = "3.0.0"; // is updated in the build when things change
const CACHE_VERSION = SERVICE_WORKER_VERSION;
const fillServiceWorkerCache = function () {
/* save in cache some static ressources
this happens before activation */
return caches.open(CACHE_VERSION).then(function(cache) {
return cache.addAll(ressourcesToSaveInCache);
});
};
self.addEventListener("install", function (event) {
/*event.waitUntil takes a promise that should resolves successfully*/
event.waitUntil(fillServiceWorkerCache().then(function() {
return self.skipWaiting();
}));
});
On Firefox version 52 the following error occurs: Service worker event waitUntil() was passed a promise that rejected with 'InvalidStateError: An attempt was made to use an object that is not, or is no longer, usable'.
The service worker is killed and removed after that. It works fine with Chrome. ressourcesToSaveInCache
is an array of relative URLs.
Edit changing it to
event.waitUntil(
fillServiceWorkerCache()
.then(skipWaiting)
.catch(skipWaiting)
);
and the service worker registers ! However fillServiceWorkerCache
rejected , which is a big deal (no offline cache). Now the question is why does fillServiceWorkerCache
reject, and what is the error message trying to tell ?
Edit inspired by Hosar's answer:
const fillServiceWorkerCache2 = function () {
return caches.open(CACHE_VERSION).then(function (cache) {
return Promise.all(
ressourcesToSaveInCache.map(function (url) {
return cache.add(url).catch(function (reason) {
return console.log(url + "failed: " + String(reason));
})
})
);
});
};
This version propagates a promise in the return chain, making the waitUntil()
actually wait for it. It will not cache and also not reject for individual ressources that failed to be added in the cache.
Edit 2: After fixing invalid relative URLs in ressourcesToSaveInCache, the error was gone
Share Improve this question edited Dec 30, 2016 at 14:16 Walle Cyril asked Dec 29, 2016 at 23:27 Walle CyrilWalle Cyril 3,2574 gold badges28 silver badges60 bronze badges1 Answer
Reset to default 7Most probably is that an img src is not valid, as mentioned here.
So, with cache.addAll
if one of the request is invalid none of the requests will be saved. Better use: cache.add
as follow:
return caches.open('cacheName').then(function(cache) {
Promise.all(
ressourcesToSaveInCache.map(function(url){cache.add(url)})
);
});
In this case all the valid urls will be saved.
本文标签: javascriptWhat can cause a Promise rejected with 39InvalidStateError39 hereStack Overflow
版权声明:本文标题:javascript - What can cause a Promise rejected with 'InvalidStateError' here? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745211975a2647941.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论