24

我有一个项目,目前正在使用 Json.Net 进行 Json 反序列化类,如下所示:

public class Foo {
    public Guid FooGuid { get; set; }
    public string Name { get; set; }
    public List<Bar> Bars { get; set; }
}

public class Bar {
    public Guid BarGuid { get; set; }
    public string Description { get; set; }
}

到目前为止,它工作正常。

为了使迭代更简单,我使Foo类实现IEnumerable<Bar>如下:

public class Foo : IEnumerable<Bar> {
    public Guid FooGuid { get; set; }
    public string Name { get; set; }
    public List<Bar> Bars { get; set; }

    public IEnumerator<Bar> GetEnumerator()
    {
        return Bars.GetEnumerator();
    }

    IEnumerator IEnumerable.GetEnumerator()
    {
        return GetEnumerator();
    }
}

public class Bar {
    public Guid BarGuid { get; set; }
    public string Description { get; set; }
}

但随后它无法反序列化对象。该错误令人困惑,因为它说它无法反序列FooGuid化字段,但删除IEnumerable接口再次起作用。

在模拟器或设备中的 MonoTouch 和 MonoDroid 环境中,问题是相同的。

关于如何使它工作的任何线索?


添加了重现此问题的代码:

public static class Tests {
    public static void SerializeAndDeserializeFoo() {
        // Serialize and deserialize Foo class
        var element = new Foo
        {
            FooGuid = Guid.NewGuid(),
            Name = "Foo name",
            Bars = new List<Bar> {
                new Bar { BarGuid = Guid.NewGuid(), Description = "Bar description" },
                new Bar { BarGuid = Guid.NewGuid(), Description = "Bar description" },
                new Bar { BarGuid = Guid.NewGuid(), Description = "Bar description" }
            }
        };

        var serializedObject = JsonConvert.SerializeObject(element);
        Console.WriteLine("Serialized Foo element: {0}", serializedObject);

        // Exception if Foo implements IEnumerable
        var deserializedObject = JsonConvert.DeserializeObject<Foo>(serializedObject);
        Console.WriteLine("Foo deserialization worked!");
    }

    public static void SerializeAndDeserializeEnumerableFoo() {
        // Serialize and deserialize Foo class
        var element = new EnumerableFoo
        {
            FooGuid = Guid.NewGuid(),
            Name = "Foo name",
            Bars = new List<Bar> {
                new Bar { BarGuid = Guid.NewGuid(), Description = "Bar description" },
                new Bar { BarGuid = Guid.NewGuid(), Description = "Bar description" },
                new Bar { BarGuid = Guid.NewGuid(), Description = "Bar description" }
            }
        };

        var serializedObject = JsonConvert.SerializeObject(element);
        Console.WriteLine("Serialized EnumerableFoo element: {0}", serializedObject);

        try {
            // Exception if Foo implements IEnumerable
            var deserializedObject = JsonConvert.DeserializeObject<EnumerableFoo>(serializedObject);
            Console.WriteLine("EnumerableFoo deserialization worked!");
        }
        catch (Exception e){
            Console.WriteLine("EnumerableFoo deserialization failed!");
            throw;
        }
    }
}

public class EnumerableFoo : IEnumerable<Bar> {
    public Guid FooGuid { get; set; }
    public string Name { get; set; }
    public List<Bar> Bars { get; set; }

    public IEnumerator<Bar> GetEnumerator()
    {
        return Bars.GetEnumerator();
    }

    IEnumerator IEnumerable.GetEnumerator()
    {
        return GetEnumerator();
    }
}

public class Foo {
    public Guid FooGuid { get; set; }
    public string Name { get; set; }
    public List<Bar> Bars { get; set; }
}

public class Bar {
    public Guid BarGuid { get; set; }
    public string Description { get; set; }
}

示例项目:https ://www.dropbox.com/s/27i58aiz71dylkw/IEnumerableJson.zip

4

2 回答 2

38

来自Json.Net 文档

IEnumerable、列表和数组

.NET 列表(继承自 IEnumerable 的类型)和 .NET 数组转换为 JSON 数组。因为 JSON 数组只支持一系列值而不支持属性,所以在 .NET 集合上声明的任何其他属性和字段都不会序列化。在不需要 JSON 数组的情况下,可以将 JsonObjectAttribute 放置在实现 IEnumerable 的 .NET 类型上,以强制将该类型序列化为 JSON 对象。

换句话说,由于你的类实现IEnumerable<T>了,Json.Net 认为它是一个列表。为了解决这个问题,只需用[JsonObject]属性装饰你的类。这将迫使 Json.Net 将其作为普通类进行序列化和反序列化,这就是您在这种情况下想要的。

[JsonObject]
public class EnumerableFoo : IEnumerable<Bar>
{
    ...
}
于 2013-09-30T06:40:45.233 回答
0

如果有private要序列化/反序列化的属性,[JsonProperty]则应使用。

例子:

[JsonProperty]
private Sth[] sthArray;
于 2022-02-28T07:28:54.407 回答