我遇到了反序列化JSON对象的问题。这是我的JSON:
{
"resource": [{
"ClienteNome": "DOUGLAS DA SILVA BENEDITO",
"ClienteStatus": 0
}, {
"ClienteNome": "MARCO AURELIO DE SÁ GONÇALVES",
"ClienteStatus": 1
}, {
"ClienteNome": "MATHEUS CELESTINO CANDIDO",
"ClienteStatus": 2
}]
}
我试图以这种方式反序列化
public static async Task<List<Model.ClientesOnline>> GetAsync()
{
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Add("X-DreamFactory-Api-Key", "36fda24fe5588fa4285ac6c6c2fdfbdb6b64699774c9bf777f706d05a88");
string json = await client.GetStringAsync("http://api-u16.cloudapp.net/api/v2/nova207/_table/vw_clientes_online");
var clientesonline = JsonConvert.DeserializeObject<List<Model.ClientesOnline>>(json);
return clientesonline;
}
}
模型
namespace NovaCloud.Model
{
class ClientesOnline : INotifyPropertyChanged
{
[JsonProperty("Resorces")]
private string clientenome;
public string ClienteNome { get { return clientenome; }
set
{
clientenome = value;
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(ClienteNome)));
}
}
private string clientestatus;
public string ClienteStatus { get { return clientestatus; }
set
{
clientestatus = value;
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(ClienteStatus)));
}
}
public event PropertyChangedEventHandler PropertyChanged;
}
}
错误消息
无法将当前JSON数组(例如[1,2,3])反序列化为类型 'System.Collections.Generic.Dictionary`2 [System.String,Linker.Class.alternatives]' 因为类型需要一个JSON对象(例如{“name”:“value”})来 正确反序列化。要修复此错误,请将JSON更改为a JSON对象(例如{“name”:“value”})或将反序列化类型更改为 实现集合接口的数组或类型(例如, ICollection,IList)就像可以从JSON反序列化的List一样 阵列。 JsonArrayAttribute也可以添加到类型中以强制它 从JSON数组反序列化。
我已经尝试了几种方式
答案 0 :(得分:3)
你的模型错了,你期望一个对象不是一个列表,这就是模型应该的样子:
public class Resource
{
public string ClienteNome { get; set; }
public int ClienteStatus { get; set; }
}
public class ClientsOnline
{
public List<Resource> resource { get; set; }
}
当你反序列化时,你应该做这样的事情:
var clientsOnline= JsonConvert.DeserializeObject<ClientesOnline>(json);