跳转到主要内容

清除 PWA 页面缓存

打开浏览器控制台,复制下方 js 代码,在浏览器 console 中多运行几遍,刷新页面重新加载即可。

源代码

navigator.serviceWorker.ready
    .then((registration) => {
        registration.unregister();
    })
    .catch((error) => {
        console.error(error.message);
    });

压缩后的代码

navigator.serviceWorker.ready.then((registration)=>{registration.unregister()}).catch((error)=>{console.error(error.message)});