1

我有一个json这样的(删除它的一部分,因为它不是问题)

   {
   "obj" : {
      "id" : "a18",
      "param" : {
         "system" : 0,
         "member_fill" : "0",
         "name" : "MainAnketa",
         "multi" : 0
      }
   }
}

我尝试在 Newton.Json 的帮助下将其反序列化为以下对象:

public class GetMainAnketaResponse
    {
        [JsonProperty(PropertyName = "obj")] public Anketa AnketaData;

        public class Anketa
        {
            [JsonProperty(PropertyName = "order")]
            public List<string> FieldsOrder;

            [JsonProperty(PropertyName = "id")]
            public string Id;

            [JsonProperty(PropertyName = "param")]
            public List<Parameter> Parameters;

            public class Parameter
            {
                [JsonProperty(PropertyName = "system")]
                public int System;

                [JsonProperty(PropertyName = "member_fill")]
                public string MemberFill;

                [JsonProperty(PropertyName = "name")]
                public string Name;

                [JsonProperty(PropertyName = "multi")]
                public int Multi;
            }
        }
    }

但收到此错误:

无法将当前 JSON 对象(例如 {"name":"value"})反序列化为类型 'System.Collections.Generic.List`1[SubscribeProLib.GetMainAnketaResponse+Anketa+Parameter]' 因为该类型需要 JSON 数组(例如 [ 1,2,3]) 正确反序列化。要修复此错误,要么将 JSON 更改为 JSON 数组(例如 [1,2,3]),要么将反序列化类型更改为普通的 .NET 类型(例如,不是像整数这样的原始类型,而不是像这样的集合类型可以从 JSON 对象反序列化的数组或列表。JsonObjectAttribute 也可以添加到类型中以强制它从 JSON 对象反序列化。路径 'obj.param.system',第 61 行,位置 20。

System 属性可能有什么问题?

4

1 回答 1

5

你有一个List参数,但你的 JSON 只有一个对象作为"param".

于 2013-05-27T07:48:23.947 回答