尝试在用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吗?
deep-populate