Анонимный обратный вызов в JavaScript не работает должным образом
Я пытаюсь использовать анонимный обратный вызов с JavaScript для запуска функции только после завершения другой. В первой функции getDisciplines() выполняется вызов $getJSON, который необходимо завершить до запуска функции getRounds(). Это потому, что Дисциплины должны быть известны до того, как связанные раунды могут быть возвращены через другой $getJSON.
Внизу кода вы видите порядок возвращаемых команд console.log. Я вижу, что проблема в том, что функция getRounds() работает до того, как getDisciplines() будет полностью завершена. Как я могу решить это?
var my_Upcomings = []
var roundsCreated = {}
var my_RoundsList = []
getDisciplines("none", function() {
console.log("check in getRounds will start")
getRounds();
});
function getRounds(){
console.log("start getRounds")
console.log("my input Upcomings array:", my_Upcomings)
for (var i = 0; i < my_Upcomings.length; i++) {
console.log("check in get Rounds for loop")
my_UpcomingIdString = my_Upcomings[i].poolId.toString()
my_roundsUrl = startUrl + tournamentUrl + "/rounds/" + my_UpcomingIdString
$.getJSON(my_roundsUrl, //output: {"1":"Round 1","2":"Round 2"}
function (json) {
my_CurrentRoundsCreated = json;
my_roundCount = Object.keys(my_CurrentRoundsCreated).length
my_Upcomings.roundsCreated = my_roundCount;
my_RoundsList.push(my_Upcomings.roundsCreated)
console.log(my_RoundsList)
})
}
}
function getDisciplines(param, callback){
console.log("Now in get Disciplines")
$.getJSON(listReadyMatchesUrl, function getUpcomingMatches (json) {
my_Upcomings = json
console.log("my upcoming matches", my_Upcomings)
my_Upcomings.roundsCreated = {
"roundsCreated": "0"
}
})
callback()
}
//console.log:
//Now in get Disciplines
//check in now rounds will start
//start getRounds
//my input Upcomings array: Array[0]length: 0__proto__: Array[0]
//my upcoming matches [Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object]
1 ответ
Решение
Размещение вашего обратного вызова неверно. Это правильный путь:
function getDisciplines(param, callback){
console.log("Now in get Disciplines")
$.getJSON(listReadyMatchesUrl, function getUpcomingMatches (json) {
my_Upcomings = json
console.log("my upcoming matches", my_Upcomings)
my_Upcomings.roundsCreated = {
"roundsCreated": "0"
}
callback(); <-- Notice this line INSIDE the $.getJSON callback
});
}
Примечание: обратный вызов $.getJSON также может быть анонимным, например:$.getJSON(listReadyMatchesUrl, function (json) {}