我得到了以下Json数据
{
"HasErrors": false,
"Includes": {
"Products": {
"091006": {
"hej" : "tja"
},
"091026": {
"hej" : "tjafsafsa"
}
}
}
}
所谓动态JSON,我的意思是Products类上的属性发生了变化,所以我不能像处理"HasErrors"那样在c#类中硬编码它们。
示例:
{
"HasErrors": false,
"Includes": {
"Products": {
"091006": {
"hej" : "tja"
},
"091026": {
"hej" : "tjafsafsa"
}
}
}
}
另一个例子:
{
"HasErrors": false,
"Includes": {
"Products": {
"091126": { //CHANGED
"hej" : "tja"
},
"091043226": { //CHANGED
"hej" : "tjafsafsa"
}
}
}
}
我在.NET 中建立了以下类
响应.cs
public class Response<T> where T : new()
{
[JsonProperty("hasErrors")]
public bool HasErrors { get; set; }
[JsonProperty("includes")]
public Includes<T> Includes { get; set; }
}
包括.cs
public class Includes<T> where T : new()
{
[JsonProperty("products")]
public ProductRoot Products { get; set; }
}
ProductRoot.cs
public class ProductRoot
{
[JsonProperty("products")]
public Dictionary<string, Product> Products { get; set; }
}
产品.cs
public class Product
{
[JsonProperty("hej")]
public string Hej { get; set; }
}
然后我试着这样反序列化它:
var hej = JsonConvert.DeserializeObject<Response<Product>>(json_from_above_as_string);
然后我得到这个错误:
无法从System.String强制转换或转换为www.Models.Externals.Product。
[JsonSerializationException:将值"091006"转换为类型"www.Models.Externals.Product'.Path"Includes.ProductsOrder[0]"时出错,第1行,位置15173。]
你们知道我做错了什么吗?
我成功地实例化了一个<Response<Product>>
类型的对象,并对其进行了序列化,以了解引擎盖下发生的事情,例如,我从中得到的JSON如下:
{
"hasErrors":false,
"includes":{
"products":{
"products":{
"091006":{
"hej":"tja"
}
}
}
}
}
这表明您的JSON根本无法与您的对象模型相结合。你可以做几件事。要么将JSON格式更改为类似上面的格式,要么将对象模型更改为以下格式:
public class Response<T> where T : new()
{
[JsonProperty("hasErrors")]
public bool HasErrors { get; set; }
[JsonProperty("includes")]
public Includes<T> Includes { get; set; }
}
public class Includes<T> where T : new()
{
[JsonProperty("products")]
public Dictionary<string, T> Products { get; set; }
}
public class Product
{
[JsonProperty("hej")]
public string Hej { get; set; }
}
我通过删除ProductRoot类解决了这个问题。
现在看起来是这样的:
public class Response<T> where T : new()
{
[JsonProperty("hasErrors")]
public bool HasErrors { get; set; }
[JsonProperty("includes")]
public Includes<T> Includes { get; set; }
}
public class Includes<T> where T : new()
{
[JsonProperty("products")]
public Dictionary<string, Product>Products { get; set; }
}