JavaScriptを使用してfacebook send apiを使用しています。私がやろうとしています何javascriptで別の関数を実行する
function sendmessage(callback) {
for (i = 0; i < recipientId.length; i++) {
var messageData = {
recipient: {
id: recipientId[i]
},
message: {
text: messageText
}
};
callSendAPI(messageData, pagetoken, id_notsent);
}
return callback();
}
function sendstatus() {
if (id_notsent.length == 0) {
res.statusCode = 200;
res.message = "Successfully sent generic message to all recipients";
} else {
res.statusCode = 400;
res.message = "Unable to send message to all users. Message not sent to recipients : " + id_notsent.toString();
};
resp.send(res);
}
sendmessage(sendstatus);
は、基本的には、どのメッセージがsendstatus機能を使用してそれに応じてレスポンスを返送後、送信してすることができませんでしたしcorrespodingユーザIDが含まれていますSendMessage関数の内部でid_notsent変数を更新することです。問題は、callSendAPI関数が完了する前にsendmessageのコールバックが呼び出されていることです。
がasync/await
ES8パターンの使い方:
をコールバック彼らは
Promise.all
を使用して完了するのを待って、すべての通話のための約束を得ますcallSendAPI関数から戻ってきます。では、この場合、どのようにこのソリューションをさらに進めることができますか? –'callSendAPI'はPromiseを返すか、コールバックパラメータを提供する必要があります。そうしなければ、サーバーへの非同期呼び出しが完了したときを知ることはできません –