我有一个显示可供预订的房间的搜索表单,如果我预订房间并在之后点击浏览器中的后退按钮,搜索结果仍会显示。当我回击时是否可以重新加载页面,以便用户必须再次单击搜索按钮才能查看可用房间?我只想要没有结果的默认搜索表单?我以前试过这个:
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
但这只是重新加载页面,用户输入参数仍在搜索中,所以它基本上显示与没有重新加载相同的页面,谢谢