码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2020-05-17 14:50:18      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:nat   alt   exception   fun   函数   ons   error   row   image   

修改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);
    }

结果:

技术图片

 

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

标签:nat   alt   exception   fun   函数   ons   error   row   image   

原文地址:https://www.cnblogs.com/roland-sky/p/12905196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!