首页 > 代码库 > 移动端缓存清理

移动端缓存清理

除了给js、css文件后缀加随机数之外,还需要在入口index.html中加入以下清除缓存代码

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">

移动端缓存清理