From 92dcf3fe999849c8fdfab1c8ef002fbaa10726dd Mon Sep 17 00:00:00 2001 From: elf <360197197@qq.com> Date: Sun, 8 Jan 2023 20:42:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ThinkPHP/Library/Org/Kudian/Response.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ThinkPHP/Library/Org/Kudian/Response.class.php b/ThinkPHP/Library/Org/Kudian/Response.class.php index 376d7a7..6d04690 100644 --- a/ThinkPHP/Library/Org/Kudian/Response.class.php +++ b/ThinkPHP/Library/Org/Kudian/Response.class.php @@ -40,7 +40,7 @@ class Response ]; } $this->data = $data; - $result = $data['result'] ? json_decode($data['result']) : []; + $result = $data['result'] ? json_decode($data['result'], true) : []; $this->result = $result; $this->code = $data['code']; $this->msg = $data['msg'];