たとえば、このようなさまざまなスレッドを読みました。
しかし、次のことを達成する方法は本当に私を逃れます:
私は4つの機能を持っており、それらを次々と順番に実行したいと考えています。私の主張を理解するために、それらが間違った順序になっていることに注意してください。「1、2、3、4」を出力する結果が欲しい
function firstFunction(){
// some very time consuming asynchronous code...
console.log('1');
}
function thirdFunction(){
// definitely dont wanna do this until secondFunction is finished
console.log('3');
}
function secondFunction(){
// waits for firstFunction to be completed
console.log('2');
}
function fourthFunction(){
// last function, not executed until the other 3 are done.
console.log('4');
}
私はコールバックを理解しようとしましたが、迷子になっています:(
これを行う簡単な方法はありませんか?配列をループするような...