提问者:小点点

Json.net只序列化某些属性


Json.net有没有办法只指定你想要序列化的属性?或者根据绑定标志序列化某些属性,比如只声明?

现在我正在使用< code > JObject。FromObject(MainObj。SubObj);要获取SubObj的所有属性,SubObj是遵循ISubObject接口的类的实例:

public interface ISubObject
{

}

public class ParentSubObject : ISubObject
{
    public string A { get; set; }
}


public class SubObjectWithOnlyDeclared : ParentSubObject
{
    [JsonInclude] // This is fake, but what I am wishing existed
    public string B { get; set; }

    [JsonInclude] // This is fake, but what I am wishing existed
    public string C { get; set; }
}

public class NormalSubObject: ParentSubObject
{
    public string B { get; set; }
}

如果MainObj.SubObjNormalSubObject,它将序列化A和B,但如果是SubObjectWithOnlyDeclared,它将仅序列化B和C并忽略父属性


共3个答案

匿名用户

而不是必须使用[JsonIgnore]在每个您不想按照另一个答案中的建议序列化的attribtue上。

如果您只想指定要序列化的属性,您可以使用[JsonObject(MemberSerialization.OptIn)][JsonProperty]属性来执行此操作,如下所示:

using Newtonsoft.Json;
...
[JsonObject(MemberSerialization.OptIn)]
public class Class1
{
    [JsonProperty]
    public string Property1 { set; get; }
    public string Property2 { set; get; }
}

这里只有<code>Property1</code>将被序列化。

匿名用户

您可以编写如下自定义合约解决方案

public class IgnoreParentPropertiesResolver : DefaultContractResolver
{
    bool IgnoreBase = false;
    public IgnoreParentPropertiesResolver(bool ignoreBase)
    {
        IgnoreBase = ignoreBase;
    }
    protected override IList<JsonProperty> CreateProperties(Type type, MemberSerialization memberSerialization)
    {
        var allProps = base.CreateProperties(type, memberSerialization);
        if (!IgnoreBase) return allProps;

        //Choose the properties you want to serialize/deserialize
        var props = type.GetProperties(~BindingFlags.FlattenHierarchy); 

        return allProps.Where(p => props.Any(a => a.Name == p.PropertyName)).ToList();
    }
}

现在您可以在序列化过程中使用它:

var settings = new JsonSerializerSettings() { 
                      ContractResolver = new IgnoreParentPropertiesResolver(true) 
               };
var json1 = JsonConvert.SerializeObject(new SubObjectWithOnlyDeclared(),settings );

匿名用户

不知道为什么@Eser选择把答案写为对你的问题的评论,而不是一个实际的答案...无论如何,他们是正确的。

[JsonIgnore] 特性应用于要忽略的任何属性。