我连续这三行:
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?