ROR + MVC禁用浏览器缓存

时间:2011-03-29 07:16:09

标签: javascript ruby-on-rails-3 caching web-applications cache-control

我正在寻找为整个 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">

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

1 个答案:

答案 0 :(得分:1)

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

在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