1

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

4

1 回答 1

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。

如何防止 Rails 中的浏览器页面缓存

于 2013-04-19T14:22:35.243 回答