出现422错误后,我无法在刀片中显示错误消息

时间:2019-11-09 20:30:06

标签: php laravel exception http-status-code-422

我对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)
                        });

1 个答案:

答案 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状态代码。