我正在使用 Mongoose 并有这样的架构:
var User = new mongoose.Schema({
registrations:[{
fieldA: String,
fieldB: String,
}]
});
var UserModel = mongoose.model('User', User);
我想找到他们的注册数组不包含对象的所有用户fieldA == 'specific value'
。
我正在使用 Mongoose 并有这样的架构:
var User = new mongoose.Schema({
registrations:[{
fieldA: String,
fieldB: String,
}]
});
var UserModel = mongoose.model('User', User);
我想找到他们的注册数组不包含对象的所有用户fieldA == 'specific value'
。
使用$ne
运算符和点符号来执行此操作:
UserModel.find({'registrations.fieldA': {$ne: 'specific value'}}, cb);
当与这样的数组字段一起使用时,$ne
只会匹配没有数组元素包含特定值的文档。