我有一个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);
};
问题:
感谢您的帮助。
答案 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);
}
});
}