Newtonsoft.Json高级篇:TypeNameHandling设置

前端之家收集整理的这篇文章主要介绍了Newtonsoft.Json高级篇:TypeNameHandling设置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

此示例使用TypeNameHandling 设置在序列化JSON和读取类型信息时包含类型信息,以便在反序列化JSON时创建创建类型

Sample

public abstract class Business
{
    public string Name { get; set; }
}

public class Hotel : Business
{
    public int Stars { get; set; }
}

public class Stockholder
{
    public string FullName { get; set; }
    public IList<Business> Businesses { get; set; }
}

使用

Stockholder stockholder = new Stockholder
{
    FullName = "Steve Stockholder",Businesses = new List<Business>
    {
        new Hotel
        {
            Name = "Hudson Hotel",Stars = 4
        }
    }
};

string jsonTypeNameAll = JsonConvert.SerializeObject(stockholder,Formatting.Indented,new JsonSerializerSettings
{
    TypeNameHandling = TypeNameHandling.All
});

Console.WriteLine(jsonTypeNameAll);
// {
//   "$type": "Newtonsoft.Json.Samples.Stockholder,Newtonsoft.Json.Tests",//   "FullName": "Steve Stockholder",//   "Businesses": {
//     "$type": "System.Collections.Generic.List`1[[Newtonsoft.Json.Samples.Business,Newtonsoft.Json.Tests]],mscorlib",//     "$values": [
//       {
//         "$type": "Newtonsoft.Json.Samples.Hotel,//         "Stars": 4,//         "Name": "Hudson Hotel"
//       }
//     ]
//   }
// }

string jsonTypeNameAuto = JsonConvert.SerializeObject(stockholder,new JsonSerializerSettings
{
    TypeNameHandling = TypeNameHandling.Auto
});

Console.WriteLine(jsonTypeNameAuto);
// {
//   "FullName": "Steve Stockholder",//   "Businesses": [
//     {
//       "$type": "Newtonsoft.Json.Samples.Hotel,//       "Stars": 4,//       "Name": "Hudson Hotel"
//     }
//   ]
// }

// for security TypeNameHandling is required when deserializing
Stockholder newStockholder = JsonConvert.DeserializeObject<Stockholder>(jsonTypeNameAuto,new JsonSerializerSettings
{
    TypeNameHandling = TypeNameHandling.Auto
});

Console.WriteLine(newStockholder.Businesses[0].GetType().Name);
// Hotel

具体内容详见官方文档:https://www.newtonsoft.com/json/help/html/SerializeTypeNameHandling.htm

解决的具体问题:可以支持复杂的继承结构:

string jsonTypeNameAll = JsonConvert.SerializeObject(xx,new JsonSerializerSettings
    {
        TypeNameHandling = TypeNameHandling.All,ReferenceLoopHandling = ReferenceLoopHandling.Ignore
    });

    var oo= JsonConvert.DeserializeObject<StartConfig>(File.ReadAllText(path),ReferenceLoopHandling = ReferenceLoopHandling.Ignore
    });
    ISupportInitialize iSupportInitialize = (ISupportInitialize) oo;
    iSupportInitialize?.EndInit();

    var o9=oo.GetComponent<InnerConfig>();//实例化StartConfig对象的子对象

猜你在找的Json相关文章