我想不出一种方法来创建适当的模式来处理帖子、评论和回复。主要停留在我将如何处理对评论的回复上。基本上就像 reddit,他们发帖然后回复,你可以回复每个人的回复
视觉评论
const CommentSchema = new mongoose.Schema({
username: {
type: String,
required: true,
},
detail: {
type: String,
required: true,
},
})
const PostSchema = new mongoose.Schema({
author: {
type: String,
required: true,
},
title: {
type: String,
required: true
},
description: {
type: String,
required: true
},
comments: [CommentSchema]
})
我制作的上述模式不处理对其他评论的回复。我还可以如何处理回复?
慕娘9325324
相关分类