0
我有一個登錄頁面,用戶輸入電子郵件和密碼,然後用戶重定向到主頁,但當我按下後退按鈕時,它會將我帶回登錄頁面。我如何防止在軌道3中發生?當用戶點擊瀏覽器的後退按鈕後成功登錄後,不應出現「登錄」頁面
我有一個登錄頁面,用戶輸入電子郵件和密碼,然後用戶重定向到主頁,但當我按下後退按鈕時,它會將我帶回登錄頁面。我如何防止在軌道3中發生?當用戶點擊瀏覽器的後退按鈕後成功登錄後,不應出現「登錄」頁面
一下添加到LoginController中(控制器,它使用的登錄)
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
這將清除瀏覽器的歷史