2016/10/08

jQuery getJSON 複数同時取得

複数のJSONファイルを読み込んで,全てが取得できてから処理をしたいとき
$.when(
    $.getJSON('a.json'),
    $.getJSON('b.json')
).done(function(data_a, data_b) {
    a = data_a[0];
    b = data_b[0];
    ...
});
参考:http://www.tam-tam.co.jp/tipsnote/javascript/post5807.html

0 件のコメント: