我正在尝试创建一个要调用的函数队列以返回自动完成结果。其中一些是我通过 $.getJSON 调用自己构建的函数,而另一些是由外部开发人员使用为 jQuery UI autocomplete 指定的内容提供给我的。
例如,这里提供了一个假的。我不知道它是否真正异步或何时可能调用回调:
var providedFunction = function(search, response) {
setTimeout(function() {
var arr = ['One', 'Two', 'Demo Custom'];
response($.grep(arr, function (s) { return s.indexOf(search) === 0; }));
},5000);
};
然后我想将它与其他一些 $.getJSON 调用结合起来,直到整个列表完成后才继续:
var searchTerm = "Demo";
var allResults = [];
var functionQueue = [];
functionQueue.push(
$.getJSON( 'http://ws.geonames.org/searchJSON?featureClass=P&style=short&maxRows=50&name_startsWith=' + searchTerm)
.success( function(data) {
$.each(data.geonames, function(i,d) {
allResults.push(d.name); });
})
);
functionQueue.push(
providedFunction(searchTerm, function(data) {
allResults.push.apply(allResults, data);
})
);
// wait for all asyc functions to have added their results,
$.when.apply($, functionQueue).done(function() {
console.log(allResults.length, allResults);
});
问题是 $.when 不等待提供的功能完成。它会在所有 $.getJSON 调用完成后立即返回。很明显,我没有正确连接提供的功能,但我不知道该怎么做。