Mongo 中间件 pre find 修改query
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mongo 中间件 pre find 修改query相关的知识,希望对你有一定的参考价值。
需求:在所有find查询的时候,默认添加查询参数 name:bennman
//创建一个query中间件 myMid.js module.exports = function(schema){ //这里可以是find findOne update等,详见:http://mongoosejs.com/docs/middleware.html schema.pre(‘findOne‘, function (next) { //给查询的query增加name:bennman this.where({name: ‘bennman‘}) next() }) }
//使用中间件 var schema = new Schema({ }) schema.plugin(myMid) module.exports = mongoose.model(‘xxxx‘, schema);
以上是关于Mongo 中间件 pre find 修改query的主要内容,如果未能解决你的问题,请参考以下文章