此代码搜索公司,然后搜索该公司数组中列出的所有网站,然后搜索该网站上的所有对话,然后搜索每个对话的所有消息,然后发送这些消息数组helper
函数的ObjectID,然后为每个消息返回一个JSON数据数组。哎呀..那是满口的。
我需要以某种方式等待所有操作完成,然后再进行清理,然后重新发送。所有代码均有效,并且console.log(messagesWithData)
发布了一些消息数组(因为在这种情况下发送了一些消息)。
感谢所有帮助:)
Company.findOne({ 'roles.admins': userId }, function (err, doc) {
if (!err) {
for (const item of doc.websites) {
Website.findById(item, function (err, doc) {
for (const item of doc.conversations) {
Conversation.findById(item, function (err, doc) {
async function findMessageData() {
var messagesWithData = await helper.takeMessageArray(
doc.messages
);
await sendMessages(messagesWithData);
}
findMessageData();
async function sendMessages(messagesWithData) {
// not sure what to put here!
console.log(messagesWithData)
}
});
}
});
}
} else {
res.send(err);
}
});
答案 0 :(得分:1)
上面的代码可以通过async / await简化
const company = await Company.findOne({ 'roles.admins': userId });
let allMessages = []
for (const websiteId of company.websites) {
const website = await Website.findById(websiteId);
for (const conversationId of website.conversations) {
const conversation = await Conversation.findById(conversationId);
const messagesWithData = await helper.takeMessageArray(
conversation.messages
);
allMessages = [...allMessages, ...messagesWithData]
}
}
// Everything completed, messages stored in one place...
console.log(allMessages)