ROR + MVC 禁用浏览器缓存

发布于 2024-10-26 23:30:26 字数 392 浏览 2 评论 0原文

我正在寻找为整个 Ruby On Rails MVC 网站禁用浏览器缓存的方法,

我找到了以下方法,

Response.Cache.SetExpires(DateTime.Now.AddSeconds(5));
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetValidUntilExpires(true);

以及元标记方法。

<meta http-equiv="PRAGMA" content="NO-CACHE">

但我正在寻找简单的方法来禁用整个网站的浏览器缓存。

I am looking for method to disable Browser Cache for entire Ruby On Rails MVC Website

I found following method,

Response.Cache.SetExpires(DateTime.Now.AddSeconds(5));
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetValidUntilExpires(true);

and also for meta tag method.

<meta http-equiv="PRAGMA" content="NO-CACHE">

But i am looking for simple method, to disable browser cache for entire website.

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

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

发布评论

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

评论(1

以酷 2024-11-02 23:30:26

朋友们,经过谷歌搜索了很长时间。我对此有一个解决方案。我不知道这是更好还是最好。但我的问题已经解决了。

在 application_controller.rb 中添加以下代码。

  before_filter :set_cache_buster

  def set_cache_buster
    response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
    response.headers["Pragma"] = "no-cache"
    response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
  end

谢谢 Goooooogle

Friends, After a long search on Google. I got one solution for this. I do not know Is this better or best. But My problem is resolved.

Add below your code in application_controller.rb..

  before_filter :set_cache_buster

  def set_cache_buster
    response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
    response.headers["Pragma"] = "no-cache"
    response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
  end

Thanks Goooooogle

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