📅  最后修改于: 2022-03-11 15:03:57.243000             🧑  作者: Mango
if ('caches' in window) {
caches.keys()
.then(function(keyList) {
return Promise.all(keyList.map(function(key) {
return caches.delete(key);
}));
})
}