JSON データを使用してテーブルを埋めようとしています
これが私が考えていることです
$.ajax({
dataType: "json",
url: "music.json"
})
.done(function(gamesjson){
DATA = gamesjson;
buildTable(DATA ); // this one is calling the above code
})
.fail(function(){
console.log("music.json error");
})
;
function buildTable(DATA){
var gl = $("#gl");
$.each(DATA.music, function(index, value) {
// code to populate table
??
}
$("#gl").append(gl);
}
buildTable() には何を書きますか? また、json に 1000 行が含まれている場合、テーブルを作成する最良の方法は何ですか?
例と説明をお願いします。ありがとう