$.getJSON("hello.txt", function(json) {
console.log(json);
alert(json.rgInventory[2].id);
});
使用下面的代碼我試圖從hello.txt文件中解析JSON信息並顯示它。正如你所看到的,代碼下的圖片能夠正確識別JSON信息,但是當試圖從第三個元素打印出它的rgInventory對象時,它說未定義。JSON解析問題undefined
有這一個與信息內許多對象,並都有一個ID。我正在使用的JSON數據可以在這裏找到:http://steamcommunity.com/id/flaangvik/inventory/json/730/2
請張貼在請求返回的JSON。 –
嘗試console.log(json.rgInventory); –
這是json - > http://steamcommunity.com/id/flaangvik/inventory/json/730/2 –