我的stages
文档中有一个MentorProfile
数组,我想将lessonsWithComments
数组与stages
串联在一起。甚至不必遍历lessonsWithComments
,然后使用updateMany
MentorProfile.updateMany(
{},
{
$push: {
stages: {
lessonsWithComments
}
}
}
).then((update) => res.json(update));
答案 0 :(得分:1)
希望对您有帮助。
MentorProfile.updateMany(
{},
{ $push: { stages: { $each: lessonsWithComments } } }
).then((update) => res.json(update));
请参阅:https://docs.mongodb.com/manual/reference/operator/update/push/