填充数组的Mongoose静态方法

时间:2014-11-24 20:29:25

标签: node.js mongoose where mongodb-query mongoose-populate

我有一个mongoose架构,例如:

var postSchema = new Schema({
    ...
    tags : [{ type: Schema.Types.ObjectId, ref: 'Tag' }]
});

我正在尝试实现一个静态方法,该方法返回具有特定标记的帖子。类似的东西:

postSchema.statics.searchByTag = function searchByTag (tag, cb) {
  return this.find().populate('tags')
             .where("tags contains the element tag")
             .exec(cb);
};

问题:

  1. 我可以在静态方法中使用populate吗?
  2. 检查“标签”是否包含“标签”的最佳方法是什么?
  3. 感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

这是我的答案/解决方案: 1)是填充静态方法中的工作; 2)这就是我解决问题的方法,可能不是最有效的方法,但它有效:

postSchema.statics.searchByTag = function searchByTag (tagId, cb) {
    var Posts = [];
    this.find({})
    .populate('author tags')
    .exec(function(err,posts){
    if(err){
        cb(err);
    }else{
        posts.forEach(function(post){
        post.tags.forEach(function(tag){
            if(new String(tag._id).valueOf() == new String(tagId).valueOf()){
            Posts.push(post);
            }
        });         
        });
        cb(null,Posts);
    }
    });
}