问题原因:微信浏览器会缓存入口文件,一般的解决方案失效!
更改服务器配置,强制不缓存入口文件,其他静态正常缓存,比如在nginx中对静态部分如下
location / {
root /mnt/dat1/test/tes-app;
index index.html index.htm;
try_files $uri $uri/ /index.html;
#### kill cache
add_header Last-Modified $date_gmt;
add_header Cache-Control 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
if_modified_since off;
expires off;
etag off;
}
location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|js)$ {
root /mnt/dat1/test/tes-app;
access_log off;
expires 30d;
}