我正在使用Nodejs和MongoDB与高速公路和猫鼬库,创建一个具有用户的博客API,文章&注释模式。下面是我使用的架构。
const UsersSchema = new mongoose.Schema({
username: { type: String },
email: { type: String },
date_created: { type: Date },
last_modified: { type: Date }
});
const ArticleSchema = new mongoose.Schema({
id: { type: String, required: true },
text: { type: String, required: true },
posted_by: { type: Schema.Types.ObjectId, ref: 'User', required: true },
images: [{ type: String }],
date_created: { type: Date },
last_modified: { type: Date }
});
const CommentSchema = new mongoose.Schema({
id: { type: String, required: true },
commented_by: { type: Schema.Types.ObjectId, ref: 'User', required: true },
article: { type: Schema.Types.ObjectId, ref: 'Article' },
text: { type: String, required: true },
date_created: { type: Date },
last_modified: { type: Date }
});发布于 2019-01-24 18:28:43
您可以使用来自mongodb 3.6及更高版本的以下聚合
Article.aggregate([
{ "$match": { "posted_by": mongoose.Types.ObjectId(id) } },
{ "$lookup": {
"from": Comment.collection.name,
"let": { "id": "$_id" },
"pipeline": [
{ "$match": { "$expr": { "$eq": [ "$article", "$$id" ] } } }
],
"as": "comments"
}},
{ "$addFields": {
"comments_no": { "$size": "$comments" },
"hasCommented": { "$in": [mongoose.Types.ObjectId(id), "$comments.commented_by"] }
}}
])https://stackoverflow.com/questions/54352833
复制相似问题