A
A
artshelom2016-09-30 14:54:48
JavaScript
artshelom, 2016-09-30 14:54:48

How to use callback in a loop?

qw = getSpisocHesh11_20(chatId);
                    console.log(qw);
                    for(var ere=0;ere<qw.length;ere++) {
                        console.log(qw[ere] + " в for");
                        getSpisocRating2(msg, qw[ere], function (spisocHESh) {
                            ll++;
                            console.log("Начало");
                            console.log(qw[ere]);
                            console.log(sendSP);
                            if (spisocHESh == true) {
                                console.log('Добавилось1 ' + qw[ere]);
                                sendSP.push(qw[ere]);
                            }
                            if (ll == qw.length) {
                                console.log(sendSP);
                                setSpisocHesh11_20(chatId, sendSP);
                                sendMessage(msg, sendSP.join('\n'));
                            }

                        })
                    }

In the loop, it must call the function in turn, and it immediately throws them for execution

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
napa3um, 2016-09-30
@napa3um

How to make foreach work linearly and not asynchronously?

A
Alexander Korotaev, 2016-09-30
@lekzd

Here the context changes, you will have to bind each callback to its own context, it's easier to
use instead of for

qw.forEach(function(item, ere){
  // тут qw[ere] или item
})

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question