From f6888f7f124e829ea8b1957adadab78799b63259 Mon Sep 17 00:00:00 2001 From: "506583276@qq.com" <506583276@qq.com> Date: Thu, 9 Nov 2023 16:49:43 +0800 Subject: [PATCH] 1 --- BBWY.Server.Business/PlatformSDK/JDBusiness.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BBWY.Server.Business/PlatformSDK/JDBusiness.cs b/BBWY.Server.Business/PlatformSDK/JDBusiness.cs index 79bcdc42..c3ffb5d6 100644 --- a/BBWY.Server.Business/PlatformSDK/JDBusiness.cs +++ b/BBWY.Server.Business/PlatformSDK/JDBusiness.cs @@ -1769,8 +1769,8 @@ namespace BBWY.Server.Business var res = jdClient.Execute(req, request.AppToken, DateTime.Now.ToLocalTime()); if (res.Json == null) - res.Json = JObject.Parse(res.Body); - return (JArray)res.Json["jingdong_ware_read_findWareById_responce"]; + return JsonConvert.DeserializeObject(res.Body).jingdong_ware_read_findWareById_responce.ware; + return (JArray)res.Json["jingdong_ware_read_findWareById_responce"]["ware"]; }