<tfoot id='rGCgz'></tfoot>
    • <bdo id='rGCgz'></bdo><ul id='rGCgz'></ul>
      <i id='rGCgz'><tr id='rGCgz'><dt id='rGCgz'><q id='rGCgz'><span id='rGCgz'><b id='rGCgz'><form id='rGCgz'><ins id='rGCgz'></ins><ul id='rGCgz'></ul><sub id='rGCgz'></sub></form><legend id='rGCgz'></legend><bdo id='rGCgz'><pre id='rGCgz'><center id='rGCgz'></center></pre></bdo></b><th id='rGCgz'></th></span></q></dt></tr></i><div id='rGCgz'><tfoot id='rGCgz'></tfoot><dl id='rGCgz'><fieldset id='rGCgz'></fieldset></dl></div>

    1. <small id='rGCgz'></small><noframes id='rGCgz'>

      <legend id='rGCgz'><style id='rGCgz'><dir id='rGCgz'><q id='rGCgz'></q></dir></style></legend>

        无法将 JSON 数组(例如 [1,2,3])反序列化为类型“

        时间:2023-08-25
        <i id='eZLDM'><tr id='eZLDM'><dt id='eZLDM'><q id='eZLDM'><span id='eZLDM'><b id='eZLDM'><form id='eZLDM'><ins id='eZLDM'></ins><ul id='eZLDM'></ul><sub id='eZLDM'></sub></form><legend id='eZLDM'></legend><bdo id='eZLDM'><pre id='eZLDM'><center id='eZLDM'></center></pre></bdo></b><th id='eZLDM'></th></span></q></dt></tr></i><div id='eZLDM'><tfoot id='eZLDM'></tfoot><dl id='eZLDM'><fieldset id='eZLDM'></fieldset></dl></div>
          1. <tfoot id='eZLDM'></tfoot>
          2. <legend id='eZLDM'><style id='eZLDM'><dir id='eZLDM'><q id='eZLDM'></q></dir></style></legend>

                  <tbody id='eZLDM'></tbody>

                  <bdo id='eZLDM'></bdo><ul id='eZLDM'></ul>
                • <small id='eZLDM'></small><noframes id='eZLDM'>

                  本文介绍了无法将 JSON 数组(例如 [1,2,3])反序列化为类型“",因为类型需要 JSON 对象(例如 {“name":“value"})才能正确反序列化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我有这个 JSON:

                  [
                      {
                          "Attributes": [
                              {
                                  "Key": "Name",
                                  "Value": {
                                      "Value": "Acc 1",
                                      "Values": [
                                          "Acc 1"
                                      ]
                                  }
                              },
                              {
                                  "Key": "Id",
                                  "Value": {
                                      "Value": "1",
                                      "Values": [
                                          "1"
                                      ]
                                  }
                              }
                          ],
                          "Name": "account",
                          "Id": "1"
                      },
                      {
                          "Attributes": [
                              {
                                  "Key": "Name",
                                  "Value": {
                                      "Value": "Acc 2",
                                      "Values": [
                                          "Acc 2"
                                      ]
                                  }
                              },
                              {
                                  "Key": "Id",
                                  "Value": {
                                      "Value": "2",
                                      "Values": [
                                          "2"
                                      ]
                                  }
                              }
                          ],
                          "Name": "account",
                          "Id": "2"
                      },
                      {
                          "Attributes": [
                              {
                                  "Key": "Name",
                                  "Value": {
                                      "Value": "Acc 3",
                                      "Values": [
                                          "Acc 3"
                                      ]
                                  }
                              },
                              {
                                  "Key": "Id",
                                  "Value": {
                                      "Value": "3",
                                      "Values": [
                                          "3"
                                      ]
                                  }
                              }
                          ],
                          "Name": "account",
                          "Id": "2"
                      }
                  ]
                  

                  我有这些课程:

                  public class RetrieveMultipleResponse
                  {
                      public List<Attribute> Attributes { get; set; }
                      public string Name { get; set; }
                      public string Id { get; set; }
                  }
                  
                  public class Value
                  {
                      [JsonProperty("Value")]
                      public string value { get; set; }
                      public List<string> Values { get; set; }
                  }
                  
                  public class Attribute
                  {
                      public string Key { get; set; }
                      public Value Value { get; set; }
                  }
                  

                  我正在尝试使用以下代码反序列化上述 JSON:

                  I am trying to deserialize the above JSON using the code below:

                  var objResponse1 = JsonConvert.DeserializeObject<RetrieveMultipleResponse>(JsonStr);
                  

                  但我收到此错误:

                  无法将当前 JSON 数组(例如 [1,2,3])反序列化为类型'test.Model.RetrieveMultipleResponse' 因为该类型需要 JSON对象(例如 {"name":"value"})正确反序列化.要解决这个问题错误要么将 JSON 更改为 JSON 对象(例如 {"name":"value"})或将反序列化类型更改为数组或实现的类型一个集合接口(例如 ICollection、IList),比如 List 可以从 JSON 数组反序列化.JsonArrayAttribute 也可以添加到类型以强制它从 JSON 数组反序列化.小路'',第 1 行,位置 1.

                  Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'test.Model.RetrieveMultipleResponse' because the type requires a JSON object (e.g. {"name":"value"}) to deserialize correctly. To fix this error either change the JSON to a JSON object (e.g. {"name":"value"}) or change the deserialized type to an array or a type that implements a collection interface (e.g. ICollection, IList) like List that can be deserialized from a JSON array. JsonArrayAttribute can also be added to the type to force it to deserialize from a JSON array. Path '', line 1, position 1.

                  推荐答案

                  您的 json 字符串包含在方括号 ([]) 中,因此它被解释为数组而不是单个 RetrieveMultipleResponse 对象.因此,您需要将其反序列化为 RetrieveMultipleResponse 的类型集合,例如:

                  Your json string is wrapped within square brackets ([]), hence it is interpreted as array instead of single RetrieveMultipleResponse object. Therefore, you need to deserialize it to type collection of RetrieveMultipleResponse, for example :

                  var objResponse1 = 
                      JsonConvert.DeserializeObject<List<RetrieveMultipleResponse>>(JsonStr);
                  

                  这篇关于无法将 JSON 数组(例如 [1,2,3])反序列化为类型“",因为类型需要 JSON 对象(例如 {“name":“value"})才能正确反序列化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用 Newtonsoft 将 JSON 反序列化为 .NET 对象(或者可 下一篇:JSON.NET Parser *似乎*对我的对象进行双重序列化

                  相关文章

                  最新文章

                      <bdo id='r7GPF'></bdo><ul id='r7GPF'></ul>
                    <i id='r7GPF'><tr id='r7GPF'><dt id='r7GPF'><q id='r7GPF'><span id='r7GPF'><b id='r7GPF'><form id='r7GPF'><ins id='r7GPF'></ins><ul id='r7GPF'></ul><sub id='r7GPF'></sub></form><legend id='r7GPF'></legend><bdo id='r7GPF'><pre id='r7GPF'><center id='r7GPF'></center></pre></bdo></b><th id='r7GPF'></th></span></q></dt></tr></i><div id='r7GPF'><tfoot id='r7GPF'></tfoot><dl id='r7GPF'><fieldset id='r7GPF'></fieldset></dl></div>

                  1. <tfoot id='r7GPF'></tfoot>
                    1. <small id='r7GPF'></small><noframes id='r7GPF'>

                    2. <legend id='r7GPF'><style id='r7GPF'><dir id='r7GPF'><q id='r7GPF'></q></dir></style></legend>