gpt4 book ai didi

c# - 在 C# 中使用动态项反序列化 json 对象

转载 作者:行者123 更新时间:2023-12-01 23:58:04 26 4
gpt4 key购买 nike

我有以下 json 文件:

{
"name": "bert",
"Bikes": {
"Bike1": {
"value": 1000,
"type": "Trek"
},
"Bike2": {
"value": 2000,
"type": "Canyon"
}
}
}

可能还有其他自行车,例如 Bike3...BikeN。我想反序列化为 C# 对象。问题是在反序列化步骤中,自行车数据完全丢失,导致 Bikes 集合为空。

重现代码:

[Test]
public void FirstCityJsonParsingTest()
{
var file = @"./testdata/test.json";
var json = File.ReadAllText(file);

var res = JsonConvert.DeserializeObject<Person>(json);
Assert.IsTrue(res.Name == "bert");
// next line is failing, because res.Bikes is null...
Assert.IsTrue(res.Bikes.Count == 2);
}

public class Bike
{
public string Id { get; set; }
public int Value { get; set; }
public string Type { get; set; }
}

public class Person
{
public string Name { get; set; }
public List<Bike> Bikes { get; set; }
}

要解决此问题,必须更改使用的模型。但是这里需要做什么更改才能正确填充自行车数据?

注意:更改输入文档不是一个选项(因为它是一个规范)

最佳答案

您的代码结构没有反射(reflect)您的 json。使用动态属性名称反序列化 json 的常用方法是使用 Dictionary<string, ...> (由 Json.NETSystem.Text.Json 支持)。尝试以下操作:

public class Bike
{
public int Value { get; set; }
public string Type { get; set; }
}

public class Person
{
public string Id { get; set; }
public string Name { get; set; }
public Dictionary<string, Bike> Bikes { get; set; }
}

Person.Bikes应该改为Dictionary<string, Bike> (也不需要 Bike.Id 属性)因为 Bikes json 元素不是数组而是对象。

关于c# - 在 C# 中使用动态项反序列化 json 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62325776/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com