1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- namespace app\api\library;
- use app\UserException;
- use Exception;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\ModelNotFoundException;
- use think\exception\Handle;
- /**
- * 自定义API模块的错误显示
- */
- class ExceptionHandle extends Handle
- {
- protected $ignoreReport = [
- '\\think\\exception\\HttpException',
- ];
- public function render(Exception $e)
- {
- // 在生产环境下返回code信息
- $debug=\think\Config::get('app_debug');
- //if (!\think\Config::get('app_debug')) {
- if(request()->isAjax() || strpos(request()->header('Accept'),'/json')!==false) {
- $statuscode = $code = 0;
- //$msg = 'An error occurred';
- $msg = $e->getMessage();
- // 验证异常
- if ($e instanceof \think\exception\ValidateException) {
- $code = 0;
- $statuscode = 200;
- $msg = $e->getError();
- }
- // Http异常
- elseif ($e instanceof \think\exception\HttpException) {
- $statuscode = $code = $e->getStatusCode();
- }
- elseif ($e instanceof UserException) {
- $code = 0;
- $msg = $e->getMessage();
- $statuscode = 200;
- }
- elseif ($e instanceof ModelNotFoundException) {
- $msg = '查找的数据不存在';
- }else{
- if(!$debug){
- $msg='服务器错误';
- }
- }
- return json(['code' => $code, 'msg' => $msg, 'time' => time(), 'data' => null], $statuscode);
- }
- //}
- //其它此交由系统处理
- return parent::render($e);
- }
- }
|