将数组与文档中的现有数组连接

时间:2019-03-26 19:15:02

标签: mongodb

我的stages文档中有一个MentorProfile数组,我想将lessonsWithComments数组与stages串联在一起。甚至不必遍历lessonsWithComments,然后使用updateMany

查询每次迭代是否有可能
MentorProfile.updateMany(
                {},
                {
                    $push: {
                        stages: {
                            lessonsWithComments
                        }
                    }
                }
            ).then((update) => res.json(update));

1 个答案:

答案 0 :(得分:1)

希望对您有帮助。

MentorProfile.updateMany(
   {},
   { $push: { stages: { $each: lessonsWithComments } } }
).then((update) => res.json(update));

请参阅:https://docs.mongodb.com/manual/reference/operator/update/push/