我正在尝试使用在线API根据UPC代码检索数据,然后将其转换为对象。他们的一种方法是以JSON格式获取数据。
您得到的结果如下:
{
"0": {
"productname": "Play-doh Single Can by Hasbro",
"imageurl": "http://ecx.images-amazon.com/images/I/31ZzLhzYDEL._SL160_.jpg",
"producturl": "",
"price": "10.01",
"currency": "GBP",
"saleprice": "",
"storename": "N/A"
},
"1": {
"productname": "PLAY-DOH Compound Tropical Pink - Two, 5 oz Cans (10 oz)",
"imageurl": "http://ecx.images-amazon.com/images/I/51LbjiXtEjL._SL160_.jpg",
"producturl": "",
"price": "37.07",
"currency": "GBP",
"saleprice": "",
"storename": "N/A"
}
}
我在8.1应用程序中使用.NET C#4.5.2。我正在尝试使用HttpClient,但我不断得到奇怪的结果,好像JSON格式不正确。我把它放到了一个在线Json编辑器中,看起来很好,所以我不确定是什么问题。我正在运行的代码非常简单。它看起来像这样。
public async Task<string> GetUpc(string upcCode)
{
var url = "http://www.searchupc.com/handlers/";
var result = string.Empty;
using (HttpClient client = new HttpClient())
{
// client.BaseAddress = new Uri(url);
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
HttpResponseMessage response = await client.GetAsync("http://www.searchupc.com/handlers/upcsearch.ashx?request_type=3&access_token=MY_TOKEN&upc=0653569289791");
result = await response.Content.ReadAsStringAsync();
//JToken token = await Task.Run(() => JObject.Parse(reader.ReadLine()));
//string name = (string)token.SelectToken("productname");
JsonSerializer s = new JsonSerializer();
var i = JsonConvert.DeserializeObject<dynamic>(result);
}
return result;
}
当我检查'i'时,它只是API结果的字符串表示。我也尝试使用JsonConvert.DeserializeObject并将其传递给字符串,但它仍然只返回一个反复出现字符串表示形式的对象。它就像它知道它是一个json对象,但格式错误。
我到目前为止唯一的解决方案是使用JObject.Parse作为标记,然后使用SelectToken遍历树。
任何想法该怎么办?解决方案感觉不对。
答案 0 :(得分:1)
鉴于密钥名在C#中无效并且因为密钥是唯一的,我认为最简单的方法是将其解析为Dictionary<string, Foo>
,其中Foo
的声明如下:< / p>
public class Foo
{
public string ProductName { get; set; }
public string ImageUrl { get; set; }
public string ProductUrl { get; set; }
public string Price { get; set; }
public string Currency { get; set; }
public string SalePrice { get; set; }
public string StoreName { get; set; }
}
然后像这样使用它:
var result = JsonConvert.DeserializeObject<Dictionary<string, Foo>>(json);
鉴于你的样本JSON,这是我得到的结果:
旁注:
如果您可以修改JSON,看起来您实际上没有使用这些密钥,它们只是按顺序递增,而是使用带有[ ]
表示法的列表。