且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何清除浏览器缓存用户注销通过“返回”按钮prevent获得私人信息后,

更新时间:2023-12-02 12:59:04

使用中的应用程序控制器的下方code ..它为我工作。
希望这会帮助你。
谢谢!!

Use the below code in application controller .. it works for me. Hope this will help you. Thank you!!

code

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