gpt4 book ai didi

c# - 使用 RestSharp 将 JSON 数组反序列化为 C# 结构

转载 作者:行者123 更新时间:2023-11-30 15:56:11 28 4
gpt4 key购买 nike

我使用 RestSharp 和 IRestResponse<T> response = client.Execute<T>(request) 将不同的 JSON 结构动态地转换为各种 C# 结构。 .但是,一个特定的 JSON 结果给我带来了麻烦,它以方括号开始和结束......

我的 JSON 以“[”和“]”字符开头和结尾:

[
{
"first": "Adam",
"last": "Buzzo"
},
{
"first": "Jeffrey",
"last": "Mosier"
}
]

我已经创建了这个类结构:

public class Person
{
public string first { get; set; }
public string last { get; set; }
}
public class Persons
{
public List<Person> person { get; set; }
}

我在方法中使用 RestSharp 动态反序列化为我的 Persons 类型 T...

IRestResponse<T> response = client.Execute<T>(request);
return response;

问题是,当 T 是 Persons 时,我在客户端收到此错误。执行行:

Unable to cast object of type 'RestSharp.JsonArray' to type 'System.Collections.Generic.IDictionary`2[System.String,System.Object]'.

我也尝试过使用 Json.Net 并得到了这个错误:

Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'Persons' because the type requires a JSON object (e.g. {\"name\":\"value\"}) to deserialize correctly.

鉴于初始的“[”字符,我尝试反序列化为人员列表。这停止了​​错误消息,我有正确数量的“人”记录,但它们都是空的。 (我确认名称的大小写是相同的。)当目标服务器的数组总是只有一个元素时,我也不想使用列表集合,因此绑定(bind)到“Persons”比“List”更有意义.

将此 JSON 反序列化为 Persons 且仍在我的动态 IRestResponse<T> response = client.Execute<T>(request) 范围内的正确方法是什么?方法论?

最佳答案

如评论中所述,您的 json 包含一组人。因此,要反序列化的目标结构应该与之匹配。要么使用:

var response = client.Execute<List<Person>>(request);

或者如果您更喜欢 Persons 类,请将其更改为

public class Persons : List<Person>
{
}

关于c# - 使用 RestSharp 将 JSON 数组反序列化为 C# 结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47429596/

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