我正在尝试从Web API获取字符串值列表到应用程序中。
这是我想要获得的Web Api中的值数组:
public IEnumerable<string> Get()
{
return new string[] { "Item1", "Item2s", "Item3", "Item4", "Item5" };
}
以下代码用于从Web Api
获取数据HttpClient client = new HttpClient();
HttpResponseMessage response = await client.GetAsync("http://localhost:1234/api/items");
var items = new List<Items>();
if (response.IsSuccessStatusCode)
{
var content = await response.Content.ReadAsStringAsync();
// Parse 1 Product from the content
var ItemsSet= JsonConvert.DeserializeObject<dynamic>(content);
var ItemData = new Items
(
(string)ItemsSet[0],
(string)ItemsSet[1],
(string)ItemsSet[2],
(string)ItemsSet[3],
(string)ItemsSet[4]
);
Items.Add(ItemData);
}
但是这只返回字符串[]中的第一个值,即“Item1”。
如何修复此问题以获取数组中的所有值?
答案 0 :(得分:0)
我想......
将itemset作为array.how将其作为变量。var[] itemset