JSONConvert.DeserializeObject不处理具有未命名数组项的子数组 [英] JSONConvert.DeserializeObject not handling child array with unnamed array items

查看:529
本文介绍了JSONConvert.DeserializeObject不处理具有未命名数组项的子数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从Web服务获得以下JSON对象

I have the following JSON object coming to me from a web service

{
   "room":{
      "name":"Thunderdome",
      "created_at":"2012/04/15 00:36:27 +0000",
      "id":xxxxxxx,
      "users":[
         {
            "type":"Member",
            "avatar_url":"url",
            "created_at":"2012/02/27 14:11:57 +0000",
            "id":1139474,
            "email_address":"xxx@xxxxxxx.com",
            "admin":false,
            "name":"xxxx xxxxx"
         },
         {
            "type":"Member",

我正在使用以下行反序列化:

I'm using the following line to deserialize:

var room = JsonConvert.DeserializeObject<SingleRoom>(text);

以及以下映射类

public class SingleRoom
{
    public Room Room { get; set; }
}

[DataContract]
public class Room
{
    [DataMember]
    public int Id { get; set; }
    [DataMember]
    public string Name { get; set; }
    public string Image {
        get { return "Assets/campfire.png"; }
    }
    [DataMember]
    public string Topic { get; set; }
    [DataMember(Name ="membership_limit")]
    public int MembershipLimit { get; set; }
    [DataMember]
    public bool Full { get; set; }
    [DataMember]
    public bool Locked { get; set; }
    [DataMember(Name = "open_to_guests")]
    public bool OpenToGuests { get; set; }
    [DataMember(Name = "updated_at")]
    public DateTime UpdatedAt { get; set; }
    [DataMember(Name = "created_at")]
    public DateTime CreatedAt { get; set; }

    [DataMember(Name = "active_token_value")]
    public string ActiveTokenValue { get; set; }

     [DataMember(Name = "Users")]
    public List<User> Users { get; set; } 
}

[DataContract]
public class User
{
    [DataMember]
    public int Id { get; set; }
    [DataMember]
    public string Name { get; set; }

    [DataMember(Name = "email_address")]
    public string EmailAddress { get; set; }
    [DataMember]
    public bool Admin { get; set; }
    [DataMember]
    public DateTime CreatedAt { get; set; }
    [DataMember]
    public string Type { get; set; }

    [DataMember(Name = "avatar_url")]
    public string AvatarUrl { get; set; }
}

"Room"对象正确反序列化,但"Room"上的"Users"属性始终为null.我知道,空结果是无法找到匹配属性的JSON.NET序列化的结果.但是,我认为我有权利吗?列表应与用户匹配.我知道JSON中的数组对象用户没有命名子对象,这是问题吗?如果是这样,我该如何解决?

The 'Room' object deserializes correctly but the Users property on the Room is always null. I know that a null result is the result of a JSON.NET serialization that couldn't find the matching property. However, I think I have it right? List should match to user. I know the array object users in the JSON doesn't have named children, is that the issue? If so, how do I solve it?

谢谢!

推荐答案

这可行....您可以重命名它们(或使用JsonProperty属性)以使用c#样式属性名称

This works.... You can rename them (or use JsonProperty attribute) to use c# style property names

(顺便说一句:Json.Net不需要DataMemberDataContract属性)

(BTW: Json.Net doesn't require DataMember, DataContract attributes)

var obj = JsonConvert.DeserializeObject<SingleRoom>(json)


public class User
{
    public string type { get; set; }
    public string avatar_url { get; set; }
    public string email_address { get; set; }
    public bool admin { get; set; }
    public string name { get; set; }
    public string created_at { get; set; }
    public int id { get; set; }
}

public class Room
{
    public string topic { get; set; }
    public int membership_limit { get; set; }
    public bool locked { get; set; }
    public string name { get; set; }
    public List<User> users { get; set; }
    public bool full { get; set; }
    public bool open_to_guests { get; set; }
    public string updated_at { get; set; }
    public string created_at { get; set; }
    public int id { get; set; }
}

public class SingleRoom
{
    public Room room { get; set; }
}

PS:您可能会发现该站点很有用 http://json2csharp.com/.

PS: You may find that site useful http://json2csharp.com/ .

这篇关于JSONConvert.DeserializeObject不处理具有未命名数组项的子数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆