任意getAllSupportedItems
のアイテムを返すことができるようにするには、AJAX 呼び出しを同期的に実行する必要があります。
getJSON
次の非同期呼び出しに変換されます。
$.ajax({
url: url,
dataType: 'json',
data: data,
success: callback
});
非同期がデフォルトです。したがって、リクエストを明示的に同期リクエストに変更する必要があります。
$.ajax({
url: url,
dataType: 'json',
data: data,
success: callback,
async: false
});
別の方法は、使用方法を再考getAllSupportedItems
して非同期ユーティリティにすることです。
function getAllSupportedItems(callback){
$.getJSON("allItems.json",
function(data){
var allItems = [];
$.each(data.items,
function(item){
allItems.push(item);
});
callback(allItems);
// callback(data.items); should also work
});
}
アップデート
この回答を最初に書いたとき、jQuery には組み込みの Deferred サポートがありませんでした。今日、次のようなことを行う方がはるかに簡潔で柔軟です。
function getAllSupportedItems( ) {
return $.getJSON("allItems.json").then(function (data) {
return data.items;
});
}
// Usage:
getAllSupportedItems().done(function (items) {
// you have your items here
});