From 113c4023af9b16d9d71c5fea934fe817c33e73aa Mon Sep 17 00:00:00 2001 From: yao978318542 <978318542@qq.com> Date: Sat, 6 May 2023 11:58:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A6=82=E6=9E=9Cnative=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E7=9A=84=E8=AF=9D=E6=B2=A1=E6=9C=89prepay=5F?= =?UTF-8?q?id=E4=BC=9A=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePayV3/Order.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/WePayV3/Order.php b/WePayV3/Order.php index 489f386..d0a97a8 100644 --- a/WePayV3/Order.php +++ b/WePayV3/Order.php @@ -56,6 +56,8 @@ class Order extends BasicWePay } else { // 创建预支付码 $result = $this->doRequest('POST', $types[$type], json_encode($data, JSON_UNESCAPED_UNICODE), true); + //如果是生成码的话没有prepay_id + if (empty($result['prepay_id'])) return $result; if (empty($result['h5_url']) && empty($result['code_url']) && empty($result['prepay_id'])) { $message = isset($result['code']) ? "[ {$result['code']} ] " : ''; $message .= isset($result['message']) ? $result['message'] : json_encode($result, JSON_UNESCAPED_UNICODE);