【发布时间】:2021-07-26 19:46:35
【问题描述】:
我有一个类似这样的模型“帖子”
{
// Some other fields
comments: [
new mongoose.Schema({
content: {
type: String,
required: [true, "Content for a comment is required."],
},
author: {
type: mongoose.Types.ObjectId,
ref: "User",
required: [true, "Author for a comment is required."],
},
}),
}
在获取帖子后,我想不出一种方法来填充 comment 内的 author 字段。我该怎么做?
【问题讨论】:
标签: node.js mongodb express mongoose mongodb-query