我从我的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属性?
答案 0 :(得分:1)
应该是data.Results.length
和data.Results[i].UnitPrice
。
data
是一个对象,Results(数组)是该对象的属性。所以data.Results
将为您提供阵列本身。