我的JSON看起来与此类似:
promise = utility.getData();
promise.success(function(){})
我已将其解析为JArray对象,但现在我需要按名称在该数组中找到特定对象(即" itemB")。当数组是根对象时,我似乎无法找到如何执行此操作。
我已经尝试了下面的代码,但我只回到了一个空的JToken。
[{“itemA”:{“name”:”foo”,”other”:"bar”}},{“itemB”:{“name”:”foo2”,”other”:”bar2”}},{“itemC”:{“name”:”foo3”,”other”:”bar3”}},{“itemB”:{“name”:”foo4”,”other”:”bar4”}}]
我还需要能够找到多个值(即上面示例中的" itemB"项目)。
答案 0 :(得分:2)
试试这个:
JArray array = JArray.Parse(json);
if (array.Count > 0) {
JToken itemATkn = array[0]["itemA"];
}