Bohužel to není příliš dobře zdokumentováno (v dokumentech API Document.js o tom není žádná zmínka), ale dokumenty mají přístup ke svým modelům prostřednictvím constructor
pole – používám ho neustále k protokolování věcí z pluginů, což mi dává přístup k tomu, ke kterému modelu jsou připojeny.
module.exports = function readonly(schema, options) {
schema.pre('save', function(next) {
console.log(this.constructor.modelName + " is running the pre-save hook.");
// some other code here ...
next();
});
});
Ve vaší situaci byste měli být schopni:
IdeaSchema.pre('save', function(next) {
var idea = this;
function generate_slug(text) {
return text.toLowerCase().replace(/[^\w ]+/g,'').replace(/ +/g,'-').trim();
};
idea.slug = generate_slug(idea.title);
// this now works
this.constructor.findOne({slug: idea.slug}, function(err, doc) {
console.log(err);
console.log(doc);
next(err, doc);
});
//console.log(idea);
});