{
"1370" : ["Tomai", "Grabowski", "Chebotko", "Egle"],
"2380" : ["Schweller", "Chen", "Tomai"],
"3333" : ["Schweller", "Chen", "The Devil"]
}
我假设您会在 1370[2] 之前访问say chebotko,但它没有给我任何东西。我究竟做错了什么?
这就是我访问它的方式。
$.getJSON("instructors.json", function(data) {
console.log(data);
// data is a JavaScript object now. Handle it as such
});