在laravel中用vue-resource發送ajax請求的時候,有時會回傳token不一致的錯誤,就是下面這張圖:
#問題:
不是讓這個錯誤消失,而是怎麼在下面的error callback
的response中取得這個錯誤訊息?
{
// GET /someUrl
this.$http.get('/someUrl').then((response) => {
// success callback
}, (response) => {
// error callback
});
}
天蓬老师2017-05-16 16:52:59
AppExceptionsHandler 這個類別中可以自訂異常處理 laravel 5.3`
public function render($request, Exception $exception)
{
if($exception instanceof TokenMismatchException){
//你的响应
}
return parent::render($request, $exception);
}`