gpt4 book ai didi

c# - 无法将类型为 'Newtonsoft.Json.Linq.JObject' 的对象转换为类型 'Newtonsoft.Json.Linq.JArray'

转载 作者:可可西里 更新时间:2023-11-01 08:15:56 24 4
gpt4 key购买 nike

我正在测试我的 Web API。模拟数据我有这个:

var objs = ((JArray)JsonConvert.DeserializeObject("{ \"PrintId\":10,\"Header\":\"header\",\"TC\":\"tc\",\"CompanyRef\":\"00000000-0000-0000-0000-000000000000\"}")).Values<JObject>();

这给了我错误:

Unable to cast object of type 'Newtonsoft.Json.Linq.JObject' to type 'Newtonsoft.Json.Linq.JArray'

重要的是它正在运行。我一定是改变了什么,但我不知道是什么。

我的目的是将此 JSON 对象转换为名为 Print 的 .NET 对象列表,其中包含以下字段:

PrintId
Header
TX
CompnayRef

最佳答案

只需创建一个类并反序列化即可。

public class Print
{
public int PrintId { get; set; }
public string Header { get; set; }
public string TC { get; set; }
public string CompanyRef { get; set; }
}

Print printObj = JsonConvert.DeserializeObject<Print>(yourJson);
printObj.PrintId = //...

关于c# - 无法将类型为 'Newtonsoft.Json.Linq.JObject' 的对象转换为类型 'Newtonsoft.Json.Linq.JArray',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33495634/

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