我正在使用主干、jquery、下划线,我想获取一些我在本地文件中得到的 JSON。
我目前正在使用
//Will get data but no access to individual objects
$.getJSON('carinfo.json', function(data){
console.log(data);
var data2 = data['unitId'];
console.log(data2);
});
将 JSON 拉入数据变量,但我不知道从这里去哪里。例如,我将如何从字段名称“carID”中取回所有值?
这就是我的一个 JSON 条目的样子
{
"carID": "xx",
"xxx": {
"unitID": "xxxxxxx",
"positionHistory": [{
"lat": "xxxxx",
"long": "xxxxxxxx",
"time": "xxxxxxxxxx",
"status": "1",
"estimatedSpeed": "0",
"lastSoundFileName": "xxxxx",
"lastSoundRange": "12",
"lastSoundTime": "xxxxxxxx",
"isToday": false,
"minutesAgo": xxxxxx
}]
},
"registration": "xxxxxxx",
"color": "xxxxxxxx",
"phone": "",
"model": "xxxx"
}
编辑:使用 data.carID 返回未定义。
chrome控制台输出截图