标签: javascript
我有一个看起来像这样的对象:
{"response":{"mydata":[{"xxx:id":"8c8b9703-bc87-40d8-b8d7-f71ebff4002a","Description":"Tsameple desc"].....
现在,我的问题是,如何访问Id字段?
我试过了
$.response.mydata[i].xxx:id
但是,由于键值中的“:”,这会导致错误。关于我如何获得价值的任何提示?
答案 0 :(得分:5)
使用bracket notation:
response.mydata[i]['xxx:id']