这是我的架构。
Home = new Schema({
name: { type: String, required: true},
description: {type: String},
administrator: {type : mongoose.Schema.Types.ObjectId, ref: 'User', required: true},
users: [{
_id: {type : mongoose.Schema.Types.ObjectId, ref: 'User'},
email: {type: String},
name: { type: String},
status: { type: Number}
}],
rooms: [Room]
});
module.exports = mongoose.model('Home', Home);
如果我想在多个文档中找到特定用户,我可以
Home.find({“users.email”:“johnk@gmail.com”},{users:1})
这将返回所有带有users.email = johnk@gmail.com
的家庭但是用户的字段是一个数组。
"users" : [
{
"status" : 0,
"name" : "Yaknow",
"email" : "yaknow@gmai.com",
"_id" : ObjectId("5875a42ea469f40c684de385")
},
{
"status" : 1,
"name" : "johnk",
"email" : "johnk@gmail.com",
"_id" : ObjectId("586e31c6ce07af6f891f80fd")
}
]
(这只是一个家,如果有很多家,会有很多这样的阵列) 因此,上述查询将返回用户具有电子邮件的每个家庭的每个用户阵列。 我的问题是,如何将JohnK的所有实例更新为JohnKirtster? 使用它会将数组名称中的每个用户更新为JohnKirster
Home.update(query,{users.name:“JohnKirster”})
答案 0 :(得分:12)
您可以通过设置multi:true
Home.update(
{"users.name": "johnk"}, //query, you can also query for email
{$set: {"users.$.name": "JohnKirster"}},
{"multi": true} //for multiple documents
)