如何在使用redirect_to(:back)时刷新页面

时间:2013-04-19 13:47:09

标签: ruby-on-rails

我有一个应用程序,其操作包括将redirect_to (:back)删除到删除按钮所在的页面。每当它返回到页面时,删除的项目仍然显示为该项目仍然存在。有没有办法刷新页面以在返回页面时显示对象的更新状态?

1 个答案:

答案 0 :(得分:1)

我在application_controller中添加了以下方法,以防止索引页面缓存。

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

将此过滤器添加到我想要控制的页面:

before_filter :set_cache_buster

谢谢@Jason Butler。

How to prevent browser page caching in Rails