在页面头部加上了如下的内容:
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
本人常用:
就是在url后面添加参数,比如www.123.com/test.html?v=20150316
参数可以用时间戳,很好用,完爆微信缓存
注:此方法同样适用于angular/vue等框架(前提是遇到这种问题可以试试),引用路径后面添加版本号就ok,亲测有效
如果是静态html文件遇到微信缓存而无法及时更新问题,请在html标签中增加不存在的manifest文件链接:
<html manifest="IGNORE.manifest">
注:根据HTML5 W3C规范,解析器下载manifest header 404/410时,缓存即失效(见 http://www.w3.org/TR/html5/browsers.html#downloading-or-updating-an-application-cache "5.7.4 Downloading or updating an application cache > 5.If fetching the manifest fails due to a 404 or 410")
该方法对其它有自己缓存机制和缓存规则的应用也有奇效。
网友评论