从json响应获取结果数组和计数

时间:2016-06-15 19:03:11

标签: jquery json odata

我从我的odata服务中获得了以下json的回应:

ext_config = os.path.join(extDataDir, 'config', 'your.json')

我编写了以下jquery代码来获取数据但不能正常工作

{"$id":"1","Results":[{"$id":"2","ProductID":1,"ProductName":"Chai","UnitPrice":18.0000},{"$id":"3","ProductID":2,"ProductName":"Chang","UnitPrice":19.0000}],"__count":77}

如何在jquery中引用Results数组和__count属性?

1 个答案:

答案 0 :(得分:1)

应该是data.Results.lengthdata.Results[i].UnitPrice

data是一个对象,Results(数组)是该对象的属性。所以data.Results将为您提供阵列本身。