我正在使用javascript來使用facebook發送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);
什麼,我要做的是更新SendMessage函數將基本上包含用戶ID correspoding到消息無法發送,然後相應地發回的響應使用sendstatus函數內部的id_notsent變量。但問題在於sendSessage中的回調在callSendAPI函數完成之前被調用。
其實我沒有發送任何從callSendAPI函數返回。那麼如何在這種情況下進一步採用這種解決方案呢? –
'callSendAPI'必須返回一個Promise或者提供一個回調參數。如果不這樣做,則無法知道何時完成對服務器的異步調用 –