laravel作为后台api使用,如何使用$request->validate([])验证
2021-03-05 07:28
标签:nat alt exception fun 函数 ons error row image 修改app/Exceptions/Handler.php文件内容 修改render函数 结果: validate([])验证,soscw.com" target="_blank">laravel作为后台api使用,如何使用$request->validate([])验证 标签:nat alt exception fun 函数 ons error row image 原文地址:https://www.cnblogs.com/roland-sky/p/12905196.htmluse Illuminate\Validation\ValidationException;
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);
}
文章标题:laravel作为后台api使用,如何使用$request->validate([])验证
文章链接:http://soscw.com/index.php/essay/60353.html