JavaScriptSerializer。如何忽略财产

发布于 2024-11-06 18:40:00 字数 95 浏览 0 评论 0原文

我了解 ScriptIgnoreAttribute。

但是,如果我想根据标准忽略某个属性该怎么办? 例如,仅当序列化时可为空且不包含任何值时,如何忽略该属性?

I know about ScriptIgnoreAttribute.

But what if I want to ignore a property based on criteria.
For example how to ignore a nullable property on serialization only if it's null and doesn't contain any value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

メ斷腸人バ 2024-11-13 18:40:00

https://learn.microsoft.com/dotnet/api/system .web.script.serialization.scriptignoreattribute

使用[ScriptIgnore]

using System;
using System.Web.Script.Serialization;

public class Group
{
    // The JavaScriptSerializer ignores this field.
    [ScriptIgnore]
    public string Comment;

    // The JavaScriptSerializer serializes this field.
    public string GroupName;
}

https://learn.microsoft.com/dotnet/api/system.web.script.serialization.scriptignoreattribute

Use [ScriptIgnore]

using System;
using System.Web.Script.Serialization;

public class Group
{
    // The JavaScriptSerializer ignores this field.
    [ScriptIgnore]
    public string Comment;

    // The JavaScriptSerializer serializes this field.
    public string GroupName;
}
七分※倦醒 2024-11-13 18:40:00

我最好的答案是制作您自己的 JavaScriptConverter 并根据您自己的条件解析该属性。

public override object Deserialize(IDictionary<string, object> dictionary, Type type, JavaScriptSerializer serializer)
{
  //...
  if (!object.ReferenceEquals(dictionary["MyProperty"],null)){
    // My Code
  }
  //...
}

Best possible answer I have is to make your own JavaScriptConverter and parse the property based on your own condition(s).

public override object Deserialize(IDictionary<string, object> dictionary, Type type, JavaScriptSerializer serializer)
{
  //...
  if (!object.ReferenceEquals(dictionary["MyProperty"],null)){
    // My Code
  }
  //...
}
北渚 2024-11-13 18:40:00

我使用内部属性而不是公共属性,它对我有用

I used internal instead of public properties and it worked for me

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文