我正在尝试mongo更新,其中来自不同集合的一个文档密钥被插入到另一个集合中。
// update user document with remove of otp and new state set.
updateOne = await db.collection(_collection).updateOne(
// search basis.
__docUpdateSearchBasis,
// updates.
__docUpdateBasis
)
答案 0 :(得分:0)
你需要像这样进行查询:
updateOne = await db.collection(_collection).findOneAndUpdate(
//Condition
{
_id: req.user.id
},
//Update what you want
{
$set: {
key: value
}
});