请问前辈们这样的连表要怎么操作
//文章
let articalSchema = new mongoose.Schema({
title: String,
author: {
type:mongoose.Schema.Types.ObjectId,
ref:'user'
},
tag:[{
tid:{
type:mongoose.Schema.Types.ObjectId,
ref:'tag'
}
}],
status:Boolean,
comment:[{
cid:{
type:mongoose.Schema.Types.ObjectId,
ref:'comment'
}
}]
})
let commentSchema = new mongoose.Schema({
comment:String,
from_uid:{
type:mongoose.Schema.Types.ObjectId,
ref:'user'
}
})
let userSchema = new mongoose.Schema({
name:String
})
能一次性的把文章下面的comment里的from_uid关联的user表的内容查出来吗
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用
populate
,下面是示例代码输出结果: