JSON到JSON数组无法反序列化当前的JSON对象

Nic*_*ahn 3 json json.net json-deserialization

我正在使用Json.NetDeserializeObject Json数据到对象/集合(列表)

我不确定我做错了什么,我试过这个:

List<LanguageObject> lang = JsonConvert.DeserializeObject<List<LanguageObject>>(jsonData);
Run Code Online (Sandbox Code Playgroud)

并试过这个:

LanguageObject.Results lang = JsonConvert.DeserializeObject<LanguageObject.Results>(jsonData);
Run Code Online (Sandbox Code Playgroud)

我收到这个错误:

Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.List`1[LanguageObject]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.   
To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List<T>) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.
Path 'meta', line 1, position 8.
Run Code Online (Sandbox Code Playgroud)

我的Json:

{"meta":
{
    "status":200,
    "message":[],
    "resultSet":
          {"id":"05"},
    "pagination":     
     {
        "count":2,
        "pageNum":1,
        "pageSize":2,
        "totalPages":1,
        "sort":"ordinal",
        "order":"Asc",
        "currentUri":null,
        "nextUri":null
      }
    },
    "results":   
     {
         "id":0,
         "name":
         "Language",
         "DName":null,
         "qvalue":"language",
         "language":null,
         "mUsageCount":null,
         "Ordinal":0,
      "items":
         [
           {
             "id":0,
             "name":"English",
             "DName":"English",
             "qvalue":null,
             "language":null,
             "mUsageCount":null,
             "Ordinal":0,
             "items":[]
           },
           {
             "id":0,
              "name":"Spanish",
              "DName":"Spanish;",
              "qvalue":null,
              "language":null,
              "mUsageCount":null,
              "Ordinal":0,"
              items":[]
           }
         ]
     }}
Run Code Online (Sandbox Code Playgroud)

LanguageObject.cs

   Public class LanguageObject
    {
    public class ResultSet
    {
        public string id { get; set; }
    }

    public class Pagination
    {
        public int count { get; set; }
        public int pageNum { get; set; }
        public int pageSize { get; set; }
        public int totalPages { get; set; }
        public string sort { get; set; }
        public string order { get; set; }
        public object currentUri { get; set; }
        public object nextUri { get; set; }
    }

    public class Meta
    {
        public int status { get; set; }
        public List<object> message { get; set; }
        public ResultSet resultSet { get; set; }
        public Pagination pagination { get; set; }
    }

    public class Item
    {
        public int id { get; set; }
        public string name { get; set; }
        public string DName { get; set; }
        public object qvalue { get; set; }
        public object language { get; set; }
        public object mUsageCount { get; set; }
        public int Ordinal { get; set; }
        public List<object> items { get; set; }
        public List<object> __invalid_name__
                      items { get; set; }
    }

    public class Results
    {
        public int id { get; set; }
        public string name { get; set; }
        public object DName { get; set; }
        public string qvalue { get; set; }
        public object language { get; set; }
        public object mUsageCount { get; set; }
        public int Ordinal { get; set; }
        public List<Item> items { get; set; }
    }

    public class RootObject
    {
        public Meta meta { get; set; }
        public Results results { get; set; }
    }

}
Run Code Online (Sandbox Code Playgroud)

Bri*_*ers 5

我没有LanguageObject在你的问题中看到一个类定义.不过,我确实看到了一RootObject堂课.根据您发布的内容,您需要反序列化,如下所示:

RootObject root = JsonConvert.DeserializeObject<RootObject>(jsonData);
Run Code Online (Sandbox Code Playgroud)

然后你可以ResultsRootObject:

Results lang = root.Results;
Run Code Online (Sandbox Code Playgroud)