标签: node.js mongoose mongoose-schema
我想每次从Schema读取时都运行一个方法。像这样:
var Schema = mongoose.Schema; var exampleSchema = new Schema({ views: { type: Number } }); exampleSchema.pre('read', function(next) { this.views++; next(); });
或者,如果有更好的方法,请告诉我。感谢。