每隔一段时间我就会收到一个令牌不匹配异常。我发送令牌是不可能的。当我清除缓存时删除我的cookie它又被修复了。这可能是什么?
其他信息
当我缓存所有渲染的html以使网站脱机时,它开始发生。
答案 0 :(得分:0)
令牌不匹配异常表示您的会话已过期。
您可以正确处理此异常。看看this forum。
答案 1 :(得分:0)
您可以在config / 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分钟..