如何解决无法阻止 Angular 应用程序缓存
我在我的 Angular 应用程序生产版本中遇到缓存问题,我尝试使用
ng build --prod --outputHashing=all
那没有用,我已经添加了
location / {
root /distlocation;
index index.html index.htm;
try_files $uri $uri/ /index.html;
add_header Cache-Control 'no-store,no-cache,must-revalidate,proxy-revalidate';
}
在 Nginx 上。
即使在 index.html 中我也添加了
<head>
<Meta charset="utf-8" />
<Meta http-equiv="Cache-Control" content="max-age=0,must-revalidate" />
<Meta http-equiv="Pragma" content="no-cache" />
<Meta http-equiv="Expires" content="0" />
</head>
即使做完所有这些应用程序也不会获取最新的文件。文件从 service-worker 加载。如果我强制重新加载最新的变化反映。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。