2013-01-10 55 views

回答

1

這是怎麼website文件吧:

// assign a function to the "statics" object of our animalSchema 
animalSchema.statics.findByName = function (name, cb) { 
this.find({ name: new RegExp(name, 'i') }, cb); 
}