xxxrrrdddd 2 سال پیش
والد
کامیت
06586aa678
1فایلهای تغییر یافته به همراه8 افزوده شده و 3 حذف شده
  1. 8 3
      application/api/library/ExceptionHandle.php

+ 8 - 3
application/api/library/ExceptionHandle.php

@@ -20,6 +20,7 @@ class ExceptionHandle extends Handle
     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;
@@ -32,16 +33,20 @@ class ExceptionHandle extends Handle
                 $msg = $e->getError();
             }
             // Http异常
-            if ($e instanceof \think\exception\HttpException) {
+            elseif ($e instanceof \think\exception\HttpException) {
                 $statuscode = $code = $e->getStatusCode();
             }
-            if ($e instanceof UserException) {
+            elseif ($e instanceof UserException) {
                 $code = 0;
                 $msg = $e->getMessage();
                 $statuscode = 200;
             }
-            if ($e instanceof ModelNotFoundException) {
+            elseif ($e instanceof ModelNotFoundException) {
                 $msg = '查找的数据不存在';
+            }else{
+                if(!$debug){
+                    $msg='服务器错误';
+                }
             }
             return json(['code' => $code, 'msg' => $msg, 'time' => time(), 'data' => null], $statuscode);
         }