在rails中注销后阻止后退按钮

时间:2015-04-13 06:57:32

标签: ruby-on-rails

退出后我要防止后退按钮。所以我在application.rb文件中编写了set_no_cache方法。但它无法阻止后退按钮功能。

appliction_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

我评论了' turbolinks' gem并从application.js中删除以下行: // =需要turbolinks

我正在使用rails 4.1.6

有关如何解决此问题的任何建议吗?

由于

0 个答案:

没有答案