停止 Firefox 中的缓存

发布于 2024-10-24 23:55:20 字数 324 浏览 3 评论 0原文

我正在使用以下代码。

<%
response.addHeader("Cache-Control","no-cache"); 
response.addHeader("Pragma","no-cache,no-store,private,must-revalidate,max-stale=0,post-check=0,pre-check=0 "); 
response.addDateHeader ("Expires", 0);
%>

它在 IE 中完美运行,但该页面在 Firefox 中仍然被缓存。我也想停止 Firefox 中的缓存。有什么建议吗?

I am using following code.

<%
response.addHeader("Cache-Control","no-cache"); 
response.addHeader("Pragma","no-cache,no-store,private,must-revalidate,max-stale=0,post-check=0,pre-check=0 "); 
response.addDateHeader ("Expires", 0);
%>

It works perfectly in IE, but the page is still cached in Firefox. I want to stop caching in Firefox as well. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不醒的梦 2024-10-31 23:55:20

您混淆了 Cache-ControlPragma 标头。交换它们。也就是说,Firefox 还需要 no-storemust-revalidate 以及 no-cache

response.addHeader("Cache-Control", "no-cache,no-store,private,must-revalidate,max-stale=0,post-check=0,pre-check=0"); 
response.addHeader("Pragma", "no-cache"); 
response.addDateHeader ("Expires", 0);

更重要的是,只有 no-cache,no-store,must-revalidate 就足以让 Cache-Control 跨浏览器工作。

另请参阅:


与具体问题无关,我'建议将这段代码放在映射到 *.jsp 上的 Filter 类中,而不是将相同的代码复制粘贴到您想要的所有 JSP 文件上禁用浏览器缓存。

You're confusing Cache-Control and Pragma headers. Swap them. Firefox namely also requires no-store and must-revalidate along the no-cache.

response.addHeader("Cache-Control", "no-cache,no-store,private,must-revalidate,max-stale=0,post-check=0,pre-check=0"); 
response.addHeader("Pragma", "no-cache"); 
response.addDateHeader ("Expires", 0);

Even more, only the no-cache,no-store,must-revalidate has been enough for Cache-Control to get it to work across browsers.

See also:


Unrelated to the concrete problem, I'd recommend to put this piece of code in a Filter class which you map on *.jsp instead of copypasting the same code over all JSP files for which you'd like to disable the browser cache.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文