每過一段時間,我都會遇到令牌不匹配異常。我發送令牌,以便不能這樣做。當我清除緩存並刪除我的cookies時,它又被修復了。這可能是什麼?Laravel tokenmismatch異常
其他信息
它開始發生時,我緩存的所有呈現的HTML,以使網站能夠下線。
每過一段時間,我都會遇到令牌不匹配異常。我發送令牌,以便不能這樣做。當我清除緩存並刪除我的cookies時,它又被修復了。這可能是什麼?Laravel tokenmismatch異常
其他信息
它開始發生時,我緩存的所有呈現的HTML,以使網站能夠下線。
缺省情況下可以提高會議的時間限制在配置/ session.php文件
/*
|--------------------------------------------------------------------------
| Session Lifetime
|--------------------------------------------------------------------------
|
| Here you may specify the number of minutes that you wish the session
| to be allowed to remain idle before it expires. If you want them
| to immediately expire on the browser closing, set that option.
|
*/
'lifetime' => 30,
'expire_on_close' => true,
指30分鐘...
試過這個,希望它的工作。如果有效,會報告回來 – g3mini
我認爲這個問題是您的令牌一些時間內到期。檢查你的cookie存儲時間限制 –