gpt4 book ai didi

javascript - Mongoose 更新多个文档上的嵌套对象

转载 作者:行者123 更新时间:2023-12-03 05:15:22 26 4
gpt4 key购买 nike

这是架构:

var user = new Schema ({
name: {type:String},
lastName: {type:String},
extraInfo: {
phone: {type:String},
age: {type: Number}
},
postalCode: {type:Number}
})

假设我们有 10 个具有该架构的文档,其中 5 个具有邮政编码“12345”。

如何选择所有这些文档并更新这些文档的 extraInfo.phone 和 extraInfo.age?

最佳答案

嗯,我手头没有数据库,无法尝试,但它应该是这样的。

db.User.update(
{postalCode: 12345},
{"extraInfo.phone": value1, "extraInfo.age": value2},
{multi: true});

关于javascript - Mongoose 更新多个文档上的嵌套对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41624989/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com