Laravel接管Dingo-api的错误如何解决
Admin 2022-06-24 群英技术资讯 528 次浏览
接管Dingo-api的错误
如上图所示,AppServiceProvider.php中的register()方法中添加如下代码
\API::error(function (\Illuminate\Validation\ValidationException $exception){ $data =$exception->validator->getMessageBag(); $msg = collect($data)->first(); if(is_array($msg)){ $msg = $msg[0]; } return response()->json(['message'=>$msg,'status_code'=>400], 200); }); \API::error(function (\Dingo\Api\Exception\ValidationHttpException $exception){ $errors = $exception->getErrors(); return response()->json(['message'=>$errors->first(),'status_code'=>400], 200); });
接管laravel的错误
在Exceptions的Handler.php的render中写入以下代码
public function render($request, Exception $exception) { if($exception instanceof \Illuminate\Validation\ValidationException){ $data = $exception->validator->getMessageBag(); $msg = collect($data)->first(); if(is_array($msg)){ $msg = $msg[0]; } return response()->json(['message'=>$msg],200); } if (in_array('api',$exception->guards())){ if($exception instanceof AuthenticationException){ return response()->json(['message'=>'token错误'],200); } if($exception instanceof ModelNotFoundException){ return response()->json(['message'=>'该模型未找到'],200); } } return parent::render($request, $exception); }
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
区别:1、Laravel是一个全栈Web应用程序框架,而Lumen是一个微框架,用于开发微服务和API开发;2、Laravel可以与更多数量的工具集成,而Lumen与其他工具的集成设施数量较少。
下面由phpstorm教程栏目给大家介绍phpstorm配置psr规范提醒的方法,希望对需要的朋友有所帮助!1.安装Code Sniffer;2.phpstorm选择sniffer配置...
现在的开发变得多种多样,除了静态还有动态,当我们要实现魔术变量的用户,一定不能让他们有相互影响的情况发生,下文的讲解详细,步骤过程清晰,对大家进一步学习和理解相关知识有一定的帮助。有这方面学习需要的朋友就继续往下看吧!
CakePhp作为主流的基于MVC架构的php框架,能够实现快速编写项目代码。使用方式如下:1、$uses来声明;2、转换成对象;3、cakephp 查询。
这篇文章介绍了PHP基础用法讲解及phpinfo();演示,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008