MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Mongoose Valider la clé étrangère (réf)

J'ai continué à chercher sur Google au cours de la dernière heure et j'ai vu quelque chose sur la portée qui m'a fait réfléchir. Le code suivant a résolu mon problème.

//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);

Bien que ce soit une solution rapide, ce n'était en aucun cas une solution évidente (du moins pour moi). Le problème était la portée des variables.