vue项目发版后清理浏览器缓存代码

1、在index.html中添加代码

<!-- 清除浏览器缓存 -->
<meta http-equiv="pragram" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta http-equiv="Cache-control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Cache" content="no-cache">

2、在main.js中清理本地缓存

// 在 main.js 中添加以下代码
import { version } from '../package.json';

window.addEventListener('load', () => {
  // 获取当前版本号
  const currentVersion = localStorage.getItem('appVersion');

  // 如果当前版本号与最新版本号不一致,则清除缓存
  if (currentVersion !== version) {
    localStorage.clear();
    localStorage.setItem('appVersion', version);
    location.reload(true);
  }
});

3、使用 webpack 插件来实现自动添加版本号

npm install webpack-md5-hash --save-dev
// webpack.config.js

const WebpackMd5Hash = require('webpack-md5-hash');

module.exports = {
  // ...其他配置
  plugins: [
    new WebpackMd5Hash()
  ]
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值