我正在使用javascript来使用facebook发送api。
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_notsent变量,该变量基本上包含无法发送消息的用户ID对应,然后使用sendstatus函数相应地发回响应。但问题是sendmessage中的回调是在callSendAPI函数完成之前调用的。
答案 0 :(得分:1)
这里有多个解决方案:
使用async/await
ES8模式。
function async sendmessage() {
for (i = 0; i < recipientId.length; i++) {
var messageData = { ... };
await callSendAPI(messageData, pagetoken, id_notsent);
}
return ...;
}
创建一个递归函数,逐个调用callSendAPI
。
例如:
function sendmessage({
recipientId,
callback,
i = 0,
rets = [],
}) {
// our work is done
if (i >= recipientId.length) return callback(rets);
const messageData = { ... };
// Perform one request
callSendAPI(messageData, pagetoken, id_notsent, (ret) => {
// Call next
return sendmessage({
recipientId,
callback,
rets: [
...rets,
ret,
],
i: i + 1,
});
});
}
您可以使用callback
(您现在正在做的事情)或Promise
。
答案 1 :(得分:1)
我怀疑callSendAPI
会返回某种Promise
(或者有一个可以变成Promise的回调)。
您的sendMessage()
函数的结构应该在
const promises = recipentId.map( id => {
...
return callSendAPI(messageData, pagetoken, id_notsent);
});
Promise.all(promises).then(callback);
基本上:获得所有通话的承诺,等待他们使用Promise.all
然后回拨完成