例如,我想获取所有用户John任务,这些任务有标签(标签不为空)。
Post
.find({user: "John", tags : { contains objId's })
.exec( function(er, cb) {
console.log( "Show only posts with tags", cb)
})
答案 0 :(得分:1)
如果tags是一个数组:
.find({user:“John”,tags:{$ not:{$ size:0}}})
答案 1 :(得分:0)
尝试使用
.find({user:"John", tags: { $exists:true}})