vue项目强制清除页面缓存

异常描述:

支付宝中内嵌h5项目(vue框架开发),前端重新打包上传之后访问页面会导致页面空白、页面tab点击异常之类异常情况,需要手动清除支付宝缓存才可以正常访问。

解决方案:

在HTTP协议中,只有后端返回 expires 或 Cache-Control:max-age=XXX, 前端才缓存。
但在浏览器中,默认会对 html css js 等静态文件、以及重定向进行缓存,如果在HEAD头中指定:

<HEAD>
<METAHTTP-EQUIV="Pragma"CONTENT="no-cache">
<METAHTTP-EQUIV="Cache-Control"CONTENT="no-cache">
<METAHTTP-EQUIV="Expires"CONTENT="0">
</HEAD>

浏览器不会缓存html,但是还是会对重定向缓存,并且这种方式并不规范,可能有的浏览器不支持。

我的最终解决方案是:

1) 对hash过的静态文件还是采用默认方式,客户端会缓存。
2)对html文件,返回时增加头:Cache-Control,必须每次来服务端校验,根据etag返回200或者304
对应的nginx配置如下:

upstream example-be {
    
    
    ip_hash;
  server unix:/run/example-be.sock;
}
 server{
    
    
  listen 80; #监听端口
  server_name example.com

  # 后台api
   location ~ ^/api {
    
    
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
     include uwsgi_params;
     uwsgi_pass example-be;
   }

   # 前端静态文件
  location ~* \.(gif|jpg|jpeg|png|css|js|ico|eot|otf|fon|font|ttf|ttc|woff|woff2)$ {
    
    
    root /var/www/example-fe/dist/;
  }
 
  # 前端html文件
  location / {
    
    
    # disable cache html
     add_header Cache-Control 'no-cache, must-revalidate, proxy-revalidate, max-age=0';

     root /var/www/example-fe/dist/;
     index index.html index.htm;
     try_files $uri /index.html;
   }
 }

由于浏览器缓存静态文件的时间不可控,我们可以在nginx上自己配置expires 1M(1个月)

前端静态文件

 location ~* \.(gif|jpg|jpeg|png|css|js|ico|eot|otf|fon|font|ttf|ttc|woff|woff2)$ {
    
    
  root /var/www/example-fe/dist/;
  expires 1M;
 add_header Cache-Control "public";
}

vue项目打包后存在浏览器缓存问题

在入口文件index.html添加

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="expires" content="0">

因浏览器缓存原因导致vue 打包后的文件不能即使更新最新代码。缓存里的内容没有清除。(基本没作用)

解决办法:

就是在打包的文件名中添加一个版本号以便浏览器能区分。(相当于是一个哈希值)
首先在src根目录下新创建一个vue.config.js文件

const Timestamp = new Date().getTime();
module.exports = {
    
    
    publicPath:"/vue_dingdong/",
    configureWebpack: {
    
     // webpack 配置
        output: {
    
     // 输出重构  打包编译后的 文件名称  【模块名称.版本号.时间戳】
          filename: `js/[name].${
    
    process.env.VUE_APP_Version}.${
    
    Timestamp}.js`,
          chunkFilename: `js/[name].${
    
    process.env.VUE_APP_Version}.${
    
    Timestamp}.js`
        },
      },
}

这样每次打包出来的js文件的命名都不一样,也就解决了浏览器的缓存问题。

Guess you like

Origin blog.csdn.net/qq_45271323/article/details/115868377