11

我有以下模型:

var followerSchema = new Schema({
    id_follower: {type: Schema.Types.ObjectId, ref: 'Users'},
    id_post: {type: Schema.Types.ObjectId, ref: 'Posts'}
});

我希望能够找到关注者列表的所有帖子。当我使用 find 时,它当然会多次返回同一个帖子,因为多个用户可以关注同一个帖子。

所以我尝试使用 distinct,但我觉得“填充”之后不起作用。

这是我的代码:

followerModel
    .distinct('id_post',{id_follower:{$in:followerIds}})
    .populate('id_post')
    .sort({'id_post.creationDate':1})
    .exec(function (err, postFollowers) {
        console.log(postFollowers);
    })

它只返回帖子的数组,并且没有填充。

我是 mongoDB 的新手,但根据 mongoose 的文档,“distinct”方法应该返回一个查询,就像“find”方法一样。在查询中,您可以执行“填充”方法,所以我看不出我做错了什么。

我也尝试使用查询的 .distinct() 方法,所以我的代码是这样的:

followerModel
    .find({id_follower:{$in:followerIds}})
    .populate('id_post')
    .distinct('id_post')
    .sort({'id_post.creationDate':1})
    .exec(function (err, postFollowers) {
        console.log(postFollowers);
    })

在这种情况下,它可以工作,但是正如在 mongoose 的文档中一样,当您在查询中使用 distinct 方法时,您需要提供一个回调函数,因此在我的日志中我得到了所有错误。一种解决方法是有一个虚拟回调函数,但我想避免这种情况......

有谁知道为什么第一次尝试不起作用?如果通过提供虚拟回调可以接受第二种方法?

4

2 回答 2

7

考虑到目前对猫鼬的支持不足,这是否是正确的方法?

followerModel
.find({id_follower:{$in:followerIds}})
.distinct('id_post',function(error,ids) {
   Posts.find({'_id':{$in : ids}},function(err,result) {
     console.log(result);
   });
});
于 2014-12-26T06:26:36.497 回答
1

您可以简单地使用聚合来分组和填充集合。现在我们有了想要的结果

db.<your collection name>.aggregate([
  {
    $match: {<match your fields here>}
  },
  {
    $group: {_id: <your field to group the collection>}
  },
  {
    $lookup: {
              from: "<your collection of the poupulated field  or referenced field>",
              localField: "<give the id of the field which yout want to populate from the collection you matched above cases>",
              foreignField: "_id", //this references the id of the document to match the localField id in the from collection
              
              as: 'arrayName', //<some name to the returned document, this is a single document array>
            }
  },
  {
    $project: {
     //you really don't want the whole populated fields, you can select the fields you want
     <field name>: 
<1 or 0>, // 1 to select and 0 to not select 
     //you can add multiple fields here 
     //to select the fields that just returned from the last stage we can use
     "arrayName._id": <1 or 0>,
      }
  }
])
//at last you can return the data
.then((data) =>{
  console.log(data);
});

我们有 distinct(),我们 也有$grouppopulate()$lookupselect()$project

于 2021-03-10T20:41:35.350 回答