【发布时间】:2019-02-28 11:12:21
【问题描述】:
如果我想将一个项目推送到数组的一个项目中,如何向 Mongoose 添加一个项目? 我想将其推送到具有预定义_id 的文档、具有预定义'id' 的'productList' 数组、'items' 数组。
{
"_id" : ObjectId("5ba94316a48a4c828788bcc9"),
"productList" : [
{
"id" : 1,
"items" : [
{
"id" : 1,
"name" : "FLOSS 500",
}
]
}
]
}
本以为应该是这样的,结果不行:
Products.findOneAndUpdate({_id: req.body._id, productList: {id: req.body.id}}, {$push: {'items': req.body.product}})
【问题讨论】: