我正在寻找如何使用Json反序列化对象的教程。. NET,但是我找不到任何与我的相似的。
我有一个这样的Json:
{
"__ar":1,
"payload":{
"entries":[
{
"uid":100000011980844,
"photo":"",
"type":"user",
"text":"testing",
"path":"testing",
"category":"",
"needs_update":true,
"non_title_tokens":"",
"names":[
"Test"
],
"subtext":"",
"score":0
}
]
}
}
然后,我试着像这样反序列化:
var j = JsonConvert.DeserializeObject<People> (json);
然后:
public class People
{
public string __ar { get; set; }
public Payload payload { get; set; }
}
public class Payload
{
public Person entries { get; set; }
}
public class Person
{
public string uid { get; set; }
public string photo { get; set; }
public string type { get; set; }
public string text { get; set; }
public string path { get; set; }
public string category { get; set; }
public string needs_update { get; set; }
public string non_title_tokens { get; set; }
public string subtext { get; set; }
public string score { get; set; }
public List<string> names { get; set; }
}
但是它没有工作,有人知道我必须做什么来修复它吗?错误信息是:
无法将当前JSON数组(例如[1,2,3])反序列化为类型"QueryFacebook。Parser+Person',因为该类型需要一个JSON对象(例如{"name":"value"})来正确反序列化。要修复此错误将JSON更改为JSON对象(例如{"name":"value"})或将反序列化类型更改为数组或实现类的类型集合接口(例如:ICollection, IList)像List那样可以从JSON数组反序列化。
只要改变Payload
的定义如下,它将工作
public class Payload
{
public Person[] entries { get; set; }
}