浏览代码

获取地址解析队列修复

DuGuYang 11 月之前
父节点
当前提交
3e9a4e5436
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      AppStart/Helper/Tencent/GetTencentAddressInfoService.cs

+ 2 - 2
AppStart/Helper/Tencent/GetTencentAddressInfoService.cs

@@ -35,8 +35,8 @@ namespace MySystem
                     try
                     {
                         JsonData jsonObj = JsonMapper.ToObject(data);
-                        int Id = int.Parse(jsonObj["Data"]["MerchantId"].ToString());
-                        string Address = jsonObj["Data"]["Address"].ToString();
+                        int Id = int.Parse(jsonObj["MerChantId"].ToString());
+                        string Address = jsonObj["Address"].ToString();
                         string Key = Library.ConfigurationManager.AppSettings["TencentKey"].ToString();
                         var info = function.GetWebRequest("https://apis.map.qq.com/ws/geocoder/v1/?address=" + Address + "&key=" + Key);
                         JsonData result = JsonMapper.ToObject(info);