gpt4 book ai didi

c# - 有什么方法可以对 List 的子类进行 JSON.NET 序列化,该子类也具有额外的属性?

转载 作者:可可西里 更新时间:2023-11-01 09:14:37 29 4
gpt4 key购买 nike

好的,我们正在使用我非常喜欢的 Newtonsoft 的 JSON.NET 产品。但是,我有一个简单的类结构,用于分层位置,大致如下所示......

public class Location
{
public string Name{ get; set; }
public LocationList Locations{ get; set; }
}

// Note: LocationList is simply a subclass of a List<T>
// which then adds an IsExpanded property for use by the UI.
public class LocationList : List<Location>
{
public bool IsExpanded{ get; set; }
}

public class RootViewModel
{
public LocationList RootLocations{ get; set; }
}

...当我将它们序列化为 JSON 时,一切都很好,除了 LocationList 类上的 IsExpanded 属性被排除在外。只有列表的内容被序列化。

现在这是我设想的一种很好的格式。它本质上是一样的,就好像 LocationList 不是 List<Location> 的子类,而只是一个普通对象,它有一个名为 Items 的属性,类型为 List<Location>

{
"Locations":
{
"IsExpanded": true,
"Items": [
{
"Name": "Main Residence",
"Locations":
{
"IsExpanded": true,
"Items": [
{
"Name": "First Floor",
"Locations":
{
"IsExpanded": false,
"Items": [
{
"Name": "Livingroom"
},
{
"Name": "Dining Room"
},
{
"Name": "Kitchen"
}
]
},
{
"Name": "Second Floor",
"Locations":
{
"IsExpanded": false,
"Items": [
{
"Name": "Master Bedroom"
},
{
"Name": "Guest Bedroom"
}
]
},
{
"Name": "Basement"
}
]
}
}
]
}
}

现在我也明白 Newtonsoft 的产品是可扩展的,因为他们专门讨论了如何为特定数据类型编写自己的自定义序列化程序,这正是我在这里想要的。但是,他们没有关于如何执行此操作的任何好的代码示例。

如果我们(SO 社区)能够解决这个问题,从技术上讲,通过使用上述格式,我们应该能够序列化 List 的任何子类(或其派生/类似对象),前提是它们还没有名为 Items 的属性(恕我直言,这首先是一个糟糕的设计,因为它会像废话一样令人困惑!)也许我们甚至可以让 Newtonsoft 在他们的序列化器中本地滚动这样的东西!

这么说...有人知道如何自定义序列化器/反序列化器以区别对待此对象吗?

中号

最佳答案

通常,当我发现自己正在与这样的事情作斗争时,它告诉我应该考虑另一种方法。在这种情况下,我会推荐以下 View 模型结构作为替代方案:

public class Location
{
public bool IsExpanded { get; set; }
public string Name { get; set; }
public List<Location> Locations { get; set; }
}

public class ViewModel
{
public List<Location> RootLocations { get; set; }
}

关于c# - 有什么方法可以对 List<T> 的子类进行 JSON.NET 序列化,该子类也具有额外的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5863496/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com