Я прочитал верный ответ на этот вопрос относительно использования jQuery Deferred.
Я перебираю массив идентификаторов. Для каждого идентификатора мне нужно получить данные, относящиеся к нему либо из запроса ajax, либо из кеша, если запрос ajax уже успешно возвратил данные раньше.
В течение каждого цикла я использую $.when(), чтобы проверить, возвращает ли getData() что-то из кеша или успешный вызов ajax, прежде чем обрабатывать этот идентификатор. Текущая проблема заключается в том, что обработка идентификатора продолжается в любом случае, не дожидаясь успешного завершения getData() ajax.
Некоторые псевдокоды:
var IDs = ["1", "2", "1", "3", "1"];
//ID "1" is repeated
//data for "1" should should require ajax get the first time
//subsequent processing should get data for "1" from dataCache
var dataCache = [];
function getData(ID){
if (/*data for ID in dataCache*/){
//return data pertaining to ID from dataCache
} else {
return $.getJSON("returnJSONDataByID/" + ID, function(resp){
//push resp data to dataCache
})
}
}
for (/*each item i in IDs*/){
$.when(getData(IDs[i])).then(function(){
//process IDs[i] data
//this is the resolved handler, which should be executed
//when either getData() returns data from the dataCache,
//or $.getJSON succeeds
//PROBLEM: this is currently executing every loop and
//and doesn't wait for the ajax to return resp
})
}