gpt4 book ai didi

c# - 在 json 序列化过程中省略对象属性

转载 作者:太空宇宙 更新时间:2023-11-03 16:40:57 25 4
gpt4 key购买 nike

我正在使用 MVC Controller 。 Json 方法,以便将 json 结果对象发送到我的 javascript 函数。

有时我想从 json 结果对象中省略我对象的一个​​属性。

我怎样才能实现它?

这是我的 .NET 对象:

    public class jsTreeModel
{
public string Data { get; set; }
public JsTreeAttribute Att { get; set; }
public string State { get; set; }
public List<jsTreeModel> Children { get; set; }
}

在这种情况下,我想从 json 结果中省略“Children”属性。

有什么想法吗?

最佳答案

如果您使用 Json.NET 作为您的序列化程序,您可以非常简单地省略一个属性:

public class jsTreeModel
{
public string Data { get; set; }
public JsTreeAttribute Att { get; set; }
public string State { get; set; }
[JsonIgnore]
public List<jsTreeModel> Children { get; set; }
}

希望对你有帮助!

关于c# - 在 json 序列化过程中省略对象属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7531445/

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