CRSF過期,錯誤跳轉(記錄)

lmdfx發表於2020-12-15
//app/Exceptions/Handler.php
public function render($request, Throwable $exception)
    {
        if (!$request->ajax() && ($exception instanceof TokenMismatchException)) {
            return redirect()
                ->back()
                ->withErrors('頁面已過期,請重新提交') // 可選
                ->withInput($request->input()); // 可選
        }
        return parent::render($request, $exception);
    }
本作品採用《CC 協議》,轉載必須註明作者和本文連結
心之所向,素履以往。

相關文章