我有一个带有嵌入式文档数组的模型。
var CourseSchema = mongoose.Schema({
invitations: [InvitationSchema],
total:Number
});
var InvitationSchema = new mongoose.Schema({
token: { type:String, required: true},
email: String
});
想通过匹配请求中的邀请嵌入数组的令牌来更新/增加邀请总数,这里我按照http://diogogmt.wordpress.com/2012/03/23/update-elementmatch-and-中的教程进行操作mongodbmongoose 上的位置运算符/
所以我尝试了
var options = { new: false , select:'_id'};
CourseModel.update({'_id':id,'invitations':{'$elemMatch':{'token':token}}},{'$inc':{'total':1}},options,function(err,data) {
if(err){callback(err, null);}
else{
callback(null, data);
}
})
但它不起作用,如果我删除 'invitations':{'$elemMatch':{'token':token}},查询将起作用