laravel作为后台api使用,如何使用$request->validate([])验证

修改app/Exceptions/Handler.php文件内容

use Illuminate\Validation\ValidationException;

修改render函数

public function render($request, Throwable $exception)
    {
        if ($exception instanceof ValidationException) {
            return response()->json([
                'code' => 422,
                'msg' => '调用参数错误',
                'data' => $exception->errors(),
            ], 422);
        }
        return parent::render($request, $exception);
    }

结果:

 

posted @ 2020-05-17 14:35  微风L  阅读(2441)  评论(0编辑  收藏  举报