この質問が何度も尋ねられたことは知っていますが、私の場合、この回答を機能させる方法を一生理解できません。非同期のJavaScript関数が戻るのを待ちます
外側のループでいくつかの「テレビ チャンネル」をループしてから、内側のループでその週の日付をループしています。内側のループでは、サーバーに ajax リクエストを送信してデータを取得し、後で使用するために保存/キャッシュします。
var dates = []; //<-- Contains a list of dates for the coming week
var baseUrl = "http://www.someserver.com";
var storedChannels = [1,2,3,4,5,6,7,8,9,10,45,23,56,34,23,67,23,567,234,67,345,465,67,34];
for(ch = 0; ch < storedChannels.length; ch++) {
var channel = storedChannels[ch];
for(d=0; d < 7; d++) {
var currentDate = dates[d];
ajax({
url: baseUrl+"?ch="+channel+"&dt=currentDate"+,
complete: function(res) {
CMLocalStore.setString('ch' + ch + "_" + scheduleDay, res);
},
});
//Want to wait here till the ajax request completes.
//Do not want to continue to next iteration.
//Do not want to fire of 50 bazillion ajax requests all at once
//Why? Very limited bandwidth scenario, plenty of channels
}
}
PS: JQuery は使用しないでください。プレーン JS ソリューションのみ
どうもありがとう!