xieruidong 2 yıl önce
ebeveyn
işleme
fe3e9d3eed

+ 1 - 0
app/ExceptionHandle.php

@@ -21,6 +21,7 @@ class ExceptionHandle extends Handle {
             return [
                 'code'    => $this->getCode($exception),
                 'message' => $this->getMessage($exception),
+                'info' => $this->getMessage($exception),
                 'traces'   => [],
             ];
         }

+ 1 - 1
app/data/model/SystemUser.php

@@ -13,7 +13,7 @@ class SystemUser extends Model
 {
     public static function createMerchant(DataMerchants $merchants){
         $has=self::where('username',$merchants->contact_phone)->find();
-        throw_if($has,'该商家已存在无法创建');
+        $has && throw_user('该商家已存在无法创建');
         $user=new self;
         $user->username=$merchants->contact_phone;
         $user->contact_phone=$merchants->contact_phone;

+ 4 - 1
app/data/sys.php

@@ -3071,7 +3071,10 @@ function setorderno($uuid,$str='Cbz'){
     return $order_no;
 }
 
-
+function throw_user($msg,$data=null){
+    $exp= new \think\exception\HttpException(200,$msg);
+    throw $exp;
+}
 
 
 

+ 1 - 1
vendor/topthink/framework/src/think/exception/Handle.php

@@ -109,7 +109,7 @@ class Handle
      */
     public function render($request, Throwable $e): Response
     {
-        $this->isJson = $request->isJson();
+        $this->isJson = $request->isJson()||$request->header('X-Requested-With');
         if ($e instanceof HttpResponseException) {
             return $e->getResponse();
         } elseif ($e instanceof HttpException) {