[HTML]html不使用浏览器缓存

开发过程中遇到版本发布之后需要修改页面静态资源的问题,但由于初版没有设置不使用浏览器缓存,只好更换了页面地址。

建议以后开发都在<head>中加上:

    <meta http-equiv="Expires" content="0" />
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Cache-control" content="no-cache" />
    <meta http-equiv="Cache" content="no-cache" />

 

自用,如果是写jade:

        meta(http-equiv="Expires",content="0")
        meta(http-equiv="Pragma",content="no-cache")
        meta(http-equiv="Cache-control",content="no-cache")
        meta(http-equiv="Cache",content="no-cache")

 

2023.1.18补充:

如果是Safari浏览器,上述方法可能不生效。

参考简书文章:https://www.jianshu.com/p/b43b89e1e891

针对ios可能的解决方案,未亲测:

window.onpageshow = function(event) {
  if (event.persisted) {
    window.location.reload()
  }
};

 

posted @ 2022-09-21 10:54  夕苜19  阅读(154)  评论(0编辑  收藏  举报