MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Mongoose Convalida chiave esterna (rif)

Ho continuato a cercare su Google nell'ultima ora e ho visto qualcosa sull'ambito che mi ha fatto riflettere. Il codice seguente ha risolto il mio problema.

//Doctors.js
var mongoose = require('mongoose');
var schema = mongoose.Schema({
  email: { type: String }
}
module.exports = mongoose.model('Doctors', schema);

//Patients.js
//var Doctors = require('./Doctors'); --> delete this line
var mongoose = require('mongoose');
var schema = mongoose.Schema({
  email: { type: String },
  doctor: { type: String, ref: 'Doctors' }
}
schema.pre('save', function (next, req) {
  var Doctors = mongoose.model('Doctors'); //--> add this line
  Doctors.findOne({email:req.body.email}, function (err, found) {
    if (found) return next();
    else return next(new Error({error:"not found"}));
  });
});
module.exports = mongoose.model('Patients', schema);

Sebbene questa fosse una soluzione rapida, non era in alcun modo una soluzione ovvia (almeno per me). Il problema era la portata delle variabili.