我正在尝试将.NET类序列化为JSON,其中包含一个属性,该属性是泛型类型的泛型列表。
我的泛型类型定义如下:
public interface IFoo {}
public class Foo<T>: IFoo
{
public string Name {get; set;}
public string ValueType {get; set;}
public T Value {get; set:}
public Foo(string name, T value)
{
Name = name;
Value = value;
ValueType = typeof(T).ToString();
}
}
然后,如下所示:
public class Fum
{
public string FumName {get; set;}
public list<IFoo> Foos {get; set;}
}
我创建实例如下:
myFum = new Fum();
myFum.FumName = "myFum";
myFum.Foos.Add(new Foo<int>("intFoo", 2);
myFum.Foos.Add(new Foo<bool>("boolFoo", true);
myFum.Foos.Add(new Foo<string>("stringFoo", "I'm a string");
然后。。。
我正在尝试使用NewtonSoft JSON库进行序列化,如下所示:
string strJson = JsonConvert.SerializeObject(data,
Formatting.Indented, new JsonSerializerSettings
{
NullValueHandling = NullValueHandling.Include,
TypeNameHandling = TypeNameHandling.All,
TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple
});
在生成的 JSON 字符串中,每个 Foo 实例的名称和值类型属性正确序列化 - 但是,输出中始终省略值:
{
"FumName": "myFum",
"Foos" : [
{
"Name": "intFoo",
"ValueType": "System.Int32"
},
{
"Name": "boolFoo",
"ValueType": "System.Boolean"
},
{
"Name": "stringFoo",
"ValueType": "System.String"
}
]
}
任何人都可以建议一种允许我正确序列化的方法泛型类型实例的列表,以便包含 Value 属性?
默认情况下,Json.NET 可能会忽略泛型类型,使用 [JsonProperty] 属性标记它可以解决此问题。只是一个想法,它可能会也可能不起作用。我现在无法测试它,但我会尝试并告诉您它是否真的有效。
编辑:我认为这可能是您正在使用的 json.net 的版本,因为我刚刚使用NuGet的版本测试了您的代码并收到了以下输出:
{
"$type": "Testing.Fum, Testing",
"FumName": "myFum",
"Foos": {
"$type": "System.Collections.Generic.List`1[[Testing.IFoo, Testing]], mscorlib",
"$values": [
{
"$type": "Testing.Foo`1[[System.Int32, mscorlib]], Testing",
"Name": "intFoo",
"ValueType": "System.Int32",
"Value": 2
},
{
"$type": "Testing.Foo`1[[System.Boolean, mscorlib]], Testing",
"Name": "boolFoo",
"ValueType": "System.Boolean",
"Value": true
},
{
"$type": "Testing.Foo`1[[System.String, mscorlib]], Testing",
"Name": "stringFoo",
"ValueType": "System.String",
"Value": "I'm a string!"
}
]
}
}