我有两个集合:Consultas
和Pacientes
。我试着通过一个学期来获得患者姓名的咨询,但是没有成功。
var consultaSchema = new Schema({
//detalles de la consulta
paciente_c: { type: Schema.Types.ObjectId, ref: 'Paciente', required: true },
medio_c: { type: String, required: false },
/* ... */
}, { timestamps: true } );
module.exports = mongoose.model('Consulta', consultaSchema);
var pacienteSchema = new Schema({
nombre: { type: String, required: [true, 'El nombre es necesario']},
apellido: { type: String, required: false },
/* ... */
}, { timestamps: true } );
module.exports = mongoose.model('Paciente', pacienteSchema);
查询:
Consulta.find({})
.populate('paciente_c', 'nombre apellido')
//.or( { paciente_c: { nombre: regex } } )
.or( { 'paciente_c.nombre': regex } )
.exec( (err, consultas )=> {
if (err) {
reject('Error al cargar consultas !!!', err);
} else {
resolve(consultas)
}
});
修改 添加以下行
.populate( 'paciente_c', null, { nombre: { $in: regex } } )
该查询带来了所有的咨询,并且只填充了#patient; c'它找到了这个词,但它不是我需要的。我只想获得找到该术语的查询,而不是全部。
编辑2: 以下行工作正常,但它如何比较两个值?
return new Promise((resolve, reject)=> {
Consulta.find({})
.populate({
path: 'paciente_c',
match: { nombre: { $in: regex } }
})
.exec( (err, consultas )=> {
if (err) {
reject('Error al cargar consultas !!!', err);
} else {
consultas = consultas.filter(c => c.paciente_c != null);
resolve(consultas)
}
});
});