1
happyeveryday 2021-08-20 11:22:29 +08:00
一般资源通过打 hash 能避免缓存,不过遇到过 index.html 被缓存了就比较麻烦
|
2
eason1874 2021-08-20 11:28:52 +08:00
网页禁止缓存,静态文件资源路径加上版本号或者 hash,就 OK 了
|
3
lynan 2021-08-20 11:41:58 +08:00
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="0" /> |
4
wunonglin 2021-08-20 11:44:21 +08:00 1
一般不缓存 index.html,依赖 css 、js 加 hash
|
5
NewYear 2021-08-20 11:56:58 +08:00
我们内部系统,魔改了 JS 文件,结果看到很多同事的界面,接近半年了还是用的缓存 JS 文件,吐血。
|
7
jarl 2021-08-20 13:50:16 +08:00
js?version=时间戳
css?version=时间戳 |