nodejs项目评论功能的实现

尝试在用express+mongoose捣腾一个论坛, 实现评论功能的时候遇到一个问题。

帖子的model:

const ArticleSchema = new Schema({
  author: { type: Schema.Types.ObjectId, ref: "User" },
  createTime: { type: Date },
  thumb: [{ type: Schema.Types.ObjectId, ref: "User" }],
  comment: [{ type: Schema.Types.ObjectId, ref: "Comment" }],
  text: String
});

评论的model:

const CommentSchema = new Schema({
  text: String,
  createTime: { type: Date },
  poster: { type: Schema.Types.ObjectId, ref: 'User' },
  posts: {type: Schema.Types.ObjectId, ref: 'Article'}
})

渲染数据:

  Article.find()
    .sort('-createTime')
    .populate('author')
    .populate('comment')
    .exec((err, articles) => {
      if (err) return next(err)
      res.render('container/index', {
        title: 'xxxx',
        articles
      })
    })

前端:

评论内容:comments[i].text
评论人: comments[i].poster

能够获取到评论内容, 但是评论者显示的是_id值, 这样的情况 难道我要再查询一次User吗?

阅读 4.3k
2 个回答

deep-populate

User.
  findOne({ name: 'Val' }).
  populate({
    path: 'friends',
    // Get friends of friends - populate the 'friends' array for every friend
    populate: { path: 'friends' }
  });

用聚合查询.aggregate,或者你再查一次。。。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题