laravel框架 api自定义全局异常处理方法
吾爱主题
阅读:153
2021-08-31 15:59:00
评论:0
api返回实现
?1 2 3 4 5 6 7 | $result = User::find( $id ); if ( empty ( $result )){ throw new ApiException( '获取失败' ); } else { return json_decode( $result ); } |
api返回信息
?1 2 3 4 5 | { "msg" : "" , "data" : "获取失败" , "status" : 0 } |
1,添加异常类
?1 2 3 4 5 6 7 8 9 10 11 12 | namespace App\Exceptions; class ApiException extends \Exception { function _construct( $msg = '' ) { parent::_construct( $msg ); } } |
2,修改laravel异常类u。。。
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 | namespace App\Exceptions; public function render( $request , Exception $e ) { if ( $e instanceof ApiException){ $result = [ "msg" => "" , "data" => $e ->getMessage(), "status" =>0 ]; return response()->json( $result ); } return parent::render( $request , $e ); |
考虑开发配置时
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | public function render( $request , Exception $e ) { if (config( 'app.debug' )){ return parent::render( $request , $e ); } return $this ->handle( $request , $e ); } public function handle( $request ,Exception $e ){ if ( $e instanceof ApiException){ $result = [ "msg" => "" , "data" => $e ->getMessage(), "status" =>0 ]; return response()->json( $result ); } return parent::render( $request , $e ); } |
以上这篇laravel框架 api自定义全局异常处理方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/miss_shy/article/details/79305215
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。