前提・実現したいこと
Javscriptの非同期処理としてpromiseを使おうとしてます。問題はfor文で得た結果をプロミスオブジェクトとしたいのですが、どうしてもfor文を待たずに実行してしまいます。どうしたらいいのでしょうか?
Javascript初心者です。
発生している問題
Javascript
1 var promise_2 = new Promise(function(resolve) { 2 var docRef = db.collection("idol").doc(userId); 3 docRef.get().then(function(doc) { 4 following_list = doc.data()["following"] 5 6 resolve(following_list) 7 console.log("alpha") 8 }) 9 }) 10 11 .then(function(data) { 12 abc = 0; 13 console.log("beta") 14 for (var x = 0; x < following_list.length; x++) { 15 16 var docRef = db.collection("idol").doc(following_list[x]); 17 docRef.get().then(function(doc) { 18 all_fol0.lowing_posts.push(doc.data()["my_post"]) 19 console.log("theta") 20 console.log(all_following_posts) 21 }); 22 } 23 }).then(function(data) { 24 console.log(all_following_posts) 25 console.log("plz slow") 26 })
該当のソースコード
console
1alpha 2(index):244 beta 3(index):255 [] 4(index):256 plz slow 5(index):250 theta 6(index):251 [Array(0)] 7(index):250 theta 8(index):251 (2) [Array(0), Array(2)] 9(index):250 theta 10(index):251 (3) [Array(0), Array(2), Array(1)]``` 11 12### 試したこと 13 14この上のように、index255では一番上のコードの下にある console.log(all_following_posts)に対応している。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。