我正在尝试使用 jQuery 读取 JSON 文件:
var listOfItems;
$(function() {
$.getJSON('myData.json', function(data) {
listOfItems = data.items;
});
});
这是 myData.json:
{
{"source": "Microsoft", "target": "Amazon", "type": "licensing"},
{"source": "Microsoft", "target": "HTC", "type": "licensing"},
{"source": "Samsung", "target": "Apple", "type": "suit"},
{"source": "Motorola", "target": "Apple", "type": "suit"}
}
但是,Chrome Web 开发人员指出,listOfItems
此代码后未定义。为什么?我确信 javascript、HTML 和 JSON 文件都位于同一个目录中。