美文网首页
mvc 浏览器回退重新加载页面

mvc 浏览器回退重新加载页面

作者: 杰克_王_ | 来源:发表于2020-10-10 14:32 被阅读0次
    • 服务端返回禁用缓存的header
    Response.Cache.SetExpires(DateTime.Now.AddDays(-1));
    Response.Cache.SetValidUntilExpires(false);
    Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);
    Response.Cache.SetCacheability(HttpCacheability.NoCache);
    Response.Cache.SetNoStore();
    
    • view中添加禁用缓存的meta
    <meta http-equiv="PRAGMA" content="NO-CACHE" />
    

    相关文章

      网友评论

          本文标题:mvc 浏览器回退重新加载页面

          本文链接:https://www.haomeiwen.com/subject/blxjpktx.html