xieruidong %!s(int64=2) %!d(string=hai) anos
pai
achega
e8ed9b64ca
Modificáronse 1 ficheiros con 7 adicións e 2 borrados
  1. 7 2
      application/service/WechatTransferSvc.php

+ 7 - 2
application/service/WechatTransferSvc.php

@@ -70,11 +70,16 @@ class WechatTransferSvc
             ],
             'http_errors'=>false,
         ]);
+        $respArr=json_decode($res->getBody()->getContents(),true);
         if($res->getStatusCode()!==200){
-            throw new \Exception($res->getBody()->getContents());
+            if(!empty($respArr['message'])){
+                throw new \Exception($respArr['message']);
+            }else {
+                throw new \Exception($res->getBody()->getContents());
+            }
         }
         return [
-            json_decode($res->getBody()->getContents(),true),
+            $respArr,
             [$trade_no,$detail_no],
             $money
         ];