如何在 forEach 循环节点中使用 Promise?
Posted
技术标签:
【中文标题】如何在 forEach 循环节点中使用 Promise?【英文标题】:how to use promises in forEach loops node? 【发布时间】:2021-05-11 03:31:30 【问题描述】:我有一个显示用户联系人的页面。它从特定用户检索_ids 数组,并且应该遍历这些数组以获取相应的联系信息。但是我被我的异步操作卡住了。在当前情况下,它会在第一个联系人信息被推送到invitationsFromFriendsData 数组后解决。如果我将解析放在 forEach 循环之外,它会立即解析而不向数组添加任何联系信息。我做错了什么?
exports.contactBoard = async (req, res) =>
const username = req.params.username;
const doc = await User.findOne('username': username).exec();
const friendFiller = async () =>
return new Promise((resolve, reject)=>
doc.invitationsFromFriends.forEach (async element =>
const doc1 = await User.findById(element).exec()
doc.invitationsFromFriendsData.push(doc1.username)
resolve('gelukt')
);
);
const send = async () =>
return new Promise((resolve, reject)=>
res.status(200).json(
message:"retrieved user contacts",
contacts: doc
)
console.log("Nu verzenden")
resolve ('gelukt')
)
;
const verzend = async() =>
let first = await friendFiller();
console.log('Ik wacht op het vullen')
let second = await send();
verzend();
【问题讨论】:
【参考方案1】:您可以使用Promise.all
来等待一系列承诺。
const friendFiller = async () =>
const friends = await Promise.all(doc.invitationsFromFriends.map((id) => User.findById(element).exec()));
friends.forEach(() =>
doc.invitationsFromFriendsData.push(doc1.username);
)
话虽如此,我认为 Mongoose 可以代表您使用 populate
执行“连接”,我希望这会更有效,因为它会为所有朋友发出单个数据库查询。
【讨论】:
非常感谢。即使在模型用户中我会引用用户,你认为 populatie 会起作用吗? 我认为您可以使用 schema.add ***.com/questions/33825773/… 为递归模式建模跨度>以上是关于如何在 forEach 循环节点中使用 Promise?的主要内容,如果未能解决你的问题,请参考以下文章