JSON 序列化的时候忽略无效的属性值

Posted Zony

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSON 序列化的时候忽略无效的属性值相关的知识,希望对你有一定的参考价值。

例如我拥有以下代码。

public class NewObject
{
    public int? TestValue { get; set; }

    public int? Age { get; set; }
}

当我为 TestValue 属性传入一个非法数据的时候,在使用 JSON.NET 进行反序列化时会抛出异常。例如我通过以下代码对一个字符串进行反序列化,如果不出意外的话会提示无效参数值的异常。

var newValue = JsonConvert.DeserializeObject<NewObject>(@"{""TestValue"":""FFFF"",""Age"":15}",settings);

通过 Stackoverflow 查询得知,可以通过在反序列化时指定 JsonSerializerSettings 对象进行忽略。

var settings = new JsonSerializerSettings
{
    Error = (obj, args2) =>
    {
        args2.ErrorContext.Handled = true;
    }
};

var newValue = JsonConvert.DeserializeObject<NewObject>(@"{""TestValue"":""FFFF"",""Age"":15}",settings);

这样,在进行反序列化的时候就可以忽略 TestValue 的无效值,为其属性设置为 null,并且成功解析 Age 的值。

如果你是 ASP.NET Core 的程序,可以通过 IServiceCollectionConfigure<T>() 方法来配置 Error 的处理器。

services.Configure<MvcJsonOptions>(jsonOptions =>
{
    // 忽略转换过程中的异常信息
    jsonOptions.SerializerSettings.Error += (sender, args) => { args.ErrorContext.Handled = true; };
});

以上是关于JSON 序列化的时候忽略无效的属性值的主要内容,如果未能解决你的问题,请参考以下文章

MVC 返回json数据 怎么忽略序列化某个属性

C# Newtonsoft.Json JObject移除属性,在序列化时忽略

JSON 序列化程序如何忽略导航属性?

JSON 序列化程序如何忽略导航属性?

Json.net 忽略实体某些属性的序列化

Jackson序列化生成 json 不同场景下忽略字段