可以提取一个JSON元素,可以在它之前提取一个JSON元素

时间:2016-04-01 17:45:09

标签: javascript json firebug

我连续这三行:

console.log(JSON.stringify(dash.groupList[x], null, 2));
console.log("dash.groupList[x].newItem.id = "+dash.groupList[x].newItem.id);
console.log("dash.groupList[x].newItem.label = "+dash.groupList[x].newItem.label);

在控制台中产生这个:

{
  "index": 1,
  "name": "Targeting Criteria 2",
  "items": [],
  "newItem": {
    "id": "any_web",
    "label": "Any Data",
    "tooltip": "Search web data on file.",
    "template": "one_opt",
    "exclusive": true,
    "term": "True"
  },
  "$$hashKey": "object:381"
}
dash.groupList[x].newItem.id = 
dash.groupList[x].newItem.label = Any Data

为什么我可以拉标签,但不是id?

0 个答案:

没有答案