Answer the question
In order to leave comments, you need to log in
How to give a mongoose method to a model?
Let's say there is a minimal mongo model
var Schema = mongoose.Schema;
var userSchema = new Schema({
name: String
})
userShema.methods.say = function(){
console.log('hello')
}
var User = mongoose.model('users', userSchema);
module.exports = User;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question