使い方:jQuery版
$.ajax({
type: 'GET',
url: 'template/noshi_1/setting.json',
dataType: 'json'
})
.then(
// 取得成功時
function(json) {
console.log('〇:jsonファイル取得成功');
console.log(json.size);
console.log((json.img);
console.log(json.parts);
},
function() {
// エラー発生時
console.log('×:jsonファイルの取得に失敗しました');
}
);
参考
https://y-hilite.com/3387/