mongoose复杂类型doc.save()无法更新的问题

本文详细介绍了使用Mongoose框架更新MongoDB中复杂类型字段的方法。当更新嵌套属性时,直接修改并保存可能不会触发更新操作。文章提供了解决方案,即通过调用markModified方法来确保更改被正确地写入数据库。

原始document:

{
    "_id" : ObjectId("5c234903be557205da9343d7"),
    "apps" : {},
    "createTime" : NumberLong(1545816310609),
    "updateTime" : NumberLong(1545816310609)
}

apps为复杂类型,当进行更新时

const user = await User.findById('5c234903be557205da9343d7');
user.apps = { test: 'value' };
await user.save();

假如apps只有单层更新时,会正常更新

Mongoose: users.findOne({ _id: ObjectId("5c234903be557205da9343d7") }, { fields: {} })
Mongoose: users.update({ _id: ObjectId("5c234903be557205da9343d7") }, { '$set': { apps: { test: 'value' } } })

当apps需要增加属性时,

user.apps.test2 = value2;
await user.save();

mongoose检测不到你的属性更新了,所以不会执行任何更新语句。

解决办法

user.markModified('apps.test2');

然后就可以正常更新了

Mongoose: users.update({ _id: ObjectId("5c234903be557205da9343d7") }, { '$set': { 'apps.test2': 'value2' } })

Mongoose文档中有提到

Since it is a schema-less type, you can change the value to anything else you like, but Mongoose loses the ability to auto detect and save those changes. To tell Mongoose that the value of a Mixed type has changed, you need to call doc.markModified(path), passing the path to the Mixed type you just changed.

Marks the path as having pending changes to write to the db.
Very helpful when using Mixed types.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值