我有这段代码:
var json = Newtonsoft.Json.Linq.JObject.Parse("{items:"+response.Content+"}");
Console.WriteLine(json.Count);
var items = (JArray)json["items"];
for (int i = 0; i < items.Count; i++) {
Console.WriteLine("ae");
Console.WriteLine((JObject)items[i]);
}
这是响应。我有以下内容:
[{"IdUva":36,"Uva":"TESTES","IdPais":249,"Pais":"Australia","IdProduto":5114,"Descricao":"ABEL PINCHARD COTES DU RHONE","Estoque":-467700.801,"idVinhoDetalhes":84,"Produtor":"TEST","Regiao":"TESTE","Tipo":"BRANCO","Safra":"2011","Teor":99.00,"FichaTecnica":"FHGFGHFFJHFJFJHGFJFJHF","Servico":"FRANGO","Mapa":"Koala.jpg","Foto":"Chrysanthemum.jpg","Preco":1.00,"CodigoPais":36,"Bandeira":"Australia.png"}]
我需要一种方法来添加数据库中每个对象中的每个字段。 例如,我需要说像var wineId =(JObject)items [i] .WineID; 我需要获得我想要的字段的值...我该怎么做?
答案 0 :(得分:1)
就个人而言,我发现为数据创建对象比使用JObject
/ JArray
对象容易得多。因此,例如,您的JSON将转换为类似:
public class Item
{
public int IdUva { get; set; }
public string Uva { get; set; }
public int IdPais { get; set; }
public string Pais { get; set; }
public int IdProduto { get; set; }
public string Descricao { get; set; }
public double Estoque { get; set; }
public int idVinhoDetalhes { get; set; }
public string Produtor { get; set; }
public string Regiao { get; set; }
public string Tipo { get; set; }
public string Safra { get; set; }
public double Teor { get; set; }
public string FichaTecnica { get; set; }
public string Servico { get; set; }
public string Mapa { get; set; }
public string Foto { get; set; }
public double Preco { get; set; }
public int CodigoPais { get; set; }
public string Bandeira { get; set; }
}
public class RootObject
{
public List<Item> items { get; set; }
}
然后我们可以反序列化它:
RootObject json = Newtonsoft.Json.JsonConvert.DeserializeObject<RootObject>(
"{\"items\":" + response.Content + "}"
);
// iterate over the items
foreach (Item item in json.items)
{
// do what you want with them
Console.WriteLine(item.Pais);
}
当然,如果你已经拥有一个“Item”对象(来自你的数据库),你可以使用它并让事情变得非常容易。如果JSOn中的属性未与模型的属性完全对齐,则可以使用JsonProperty
属性对它们进行装饰。例如,我可能有英文模型:
public class Item
{
[JsonProperty("IdUva")]
public int GrapeID { get; set; }
[JsonProperty("Uva")]
public string Grape { get; set; }
[JsonProperty("IdPais")]
public int ParentID { get; set; }
[JsonProperty("Pais")]
public string Parent { get; set; }
[JsonProperty("IdProduto")]
public int ProductID { get; set; }
[JsonProperty("Descricao")]
public string Description { get; set; }
[JsonProperty("Estoque")]
public double Stock { get; set; }
[JsonProperty("idVinhoDetalhes")]
public int WineDetailID { get; set; }
[JsonProperty("Produtor")]
public string Producer { get; set; }
[JsonProperty("Regiao")]
public string Region { get; set; }
[JsonProperty("Tipo")]
public string Type { get; set; }
[JsonProperty("Safra")]
public string Harvest { get; set; }
/* etc */
}
对于protip,您可以使用json2csharp生成模型。
答案 1 :(得分:1)
您可以通过索引或键
来引用数组的每个元素var val = items[0].Value;
// or
var val = items["IdUva"].Value;