Inheritance in mongoose
问题 Hello I need to inherit my schemas in mongoose library. Are there complete plugins for that? Or how should I do that myself? I need to inherit all pre, post, init middleware from a Base schema also. 回答1: You may want to look at using a Mongoose Plugin: http://mongoosejs.com/docs/plugins.html A plugin that does what you want 'out of the box' is here: https://github.com/briankircho/mongoose-schema-extend 回答2: For others looking for this functionality, Mongoose 3.8 now has Schema Inheritance via