我想從一個文件加載多個JSON對象,但我的嘗試失敗。 這裏是我嘗試加載.JSON文件時運行錯誤的代碼。加載多個JSON對象
$(document).ready(function(){
$.ajax({
url: "..data.json",
method: "GET",
success: function(data) {
// do something
},
error: function(data) {
console.log('error');
}
});
});
的文件格式是什麼,我試圖加載如下:
[{ 「id_first」: 「1」, 「data_first」: 「1」},{ 「id_first」:「2 「,」data_first「:」2「}] [{」id_second「:」1「,」data_second「:」1「},{」id_second「:」2「,」data_second「:」2「}]
有沒有解決這個問題的辦法?提前感謝您的幫助!
檢查您的網址。對我來說似乎不合適。錯誤是從ajax請求生成的,而不是json文件。此外,類似JSON的字符串包含2個不同的JSON。 –
data.json位於tmp文件夾中,嘗試沒有像data.json這樣的點。當我嘗試只加載第一個對象({「id_first」:「1」,「data_first」:「1」},{「id_first」:「2」,「data_first」:「2」}] ,但關鍵是要與第二個對象一起工作 – bummm26