我正试图读写一个有 j子的JSON案:
var listOfItems;
$(function() {
$.getJSON( myData.json , function(data) {
listOfItems = data.items;
});
});
这是我的Data.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网络开发商指出,在本守则之后没有界定<代码>listOfItem。 为什么? 我相信, j、超文本和JSON的档案都属于同一目录。