飞奔的炮台 发表于 2021-11-9 10:34:13

laravel框架 api自定义全局异常处理方法

今天小编就为大家分享一篇laravel框架 api自定义全局异常处理方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
api返回实现


$result = User::find($id);
if(empty($result)){
throw new ApiException('获取失败');
}
else{
return json_decode($result);
}
api返回信息


{
"msg": "",
"data": "获取失败",
"status": 0
}
1,添加异常类


namespace App\Exceptions;


class ApiException extends \Exception
{

function _construct($msg='')
{
    parent::_construct($msg);
}

}
2,修改laravel异常类u。。。


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);
考虑开发配置时


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自定义全局异常处理方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持CodeAE代码之家。
原文链接:https://blog.csdn.net/miss_shy/article/details/79305215

http://www.zzvips.com/article/188115.html
页: [1]
查看完整版本: laravel框架 api自定义全局异常处理方法