赞
踩
Vue项目在微信公从号和微信的小程序的webview里加载的时候总是因为缓存的原因导致各种问题
在nginx 的vhost配置主机配置里增加
- location ~ ^/.*\.htm {
- add_header Cache-Control "no-cache, no-store, must-revalidate, proxy-revalidate, max-age=0";
- expires -1;
- }
调整完成后最好用
nginx -t
测试一下配置文件是否有问题,如果没有问题重启nginx 服务:
systemctl reload nginx
当然在vue 的入口页面index.html的header最好加上:
<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
如有问题,欢迎留言沟通,若有帮助请帮点个赞,谢谢!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。