我对laravel中异常或错误处理的整个概念是陌生的。基本上,我有表单请求,当不符合规则时,会向我显示控制台中的422错误,我想将其转换为刀片中的错误消息,但失败了。
我已经在Exception / Handle.php中尝试过
public function render($request, Exception $exception)
{
return redirect()->back()->with('error', 'Invalid data');
// return parent::render($request, $exception);
}
我在刀片服务器中的错误消息应与此兼容:
@if(Session::has('error'))
<div class="alert alert-error">
{{ Session::get('error') }}
@php
Session::forget('error');
@endphp
</div>
@endif
我知道我应该在返回之前检查错误代码或实例,但我只是想让它正常工作。我什么也不能退(根本没有回应)。
一种可行的方法是return parent::render($request, $exception);
,它会在控制台中显示错误消息
更多信息
我不知道它是否有帮助,但是请求是从Vue应用程序发送到控制器的,该控制器将FormRequest作为参数。
我也无法检查错误代码,
public function render($request, Exception $exception)
{
if ($exception->getCode() === 422) {
return response([], 356); //should throw 356 error
}
return parent::render($request, $exception); // instead this return fires and gives me 422 error
}
Vue组件
我的模板:
<template>
<form class="form" @submit.prevent="submit()">
<input type="text" class="form-control-plaintext textField"
placeholder="Post a comment" required v-model="textField">
<button :disabled="disabled" class="btn btn-success submit" type="submit">Post</button>
<button :disabled="disabled" class="btn btn-dark submit" type="reset">Cancel</button>
</form>
</template>
我的axios方法:
axios
.post('/comments', {
textField: this.textField,
id: this.id,
routeName: this.routename,
})
.then(response => {
this.name = '';
this.callReload(this.id);
this.textField = '';
})
.catch(function (error) {
console.log(error)
});
答案 0 :(得分:1)
您可能想更改render
函数,对于通过App\Exceptions\Handler.php
发出请求的例外情况,我假设它是从JSON
返回JSON
的。
public function render($request, $exception)
{
if ($request->isJson()) {
return response()->json(['error' => 'Error Detail'], 422);
}
}
您还需要检查exception
类型,而不是简单地为任何JSON异常返回422状态代码。