簡體   English   中英

在 mongoose 中向下填充許多子文檔級別

[英]Populate many subdocument levels down in mongoose

我正在創建一個評論系統,其中評論可以包含子評論(當您對評論發表評論時)。 我可以說我想填充 subComments 的深度,但我不知道預先有多少。 有沒有辦法告訴 mongoose 繼續填充已經填充的評論的子評論,直到沒有更多的子文檔?

CommentModel.js

const mongoose = require("mongoose");
const schema = mongoose.Schema;

const commentSchema = new schema(
  {
    post: { type: schema.Types.ObjectId, required: true, ref: "post" },
    content: { type: String, required: true },
    votes: { type: Number, required: true },
    user: { type: schema.Types.ObjectId, required: true, ref: "user" },
    subComments: [{ type: schema.Types.ObjectId, ref: "comment" }],
    parentComment: { type: schema.Types.ObjectId, ref: "comment" },
  },
  { timestamps: true }
);

module.exports = Comment = mongoose.model("comment", commentSchema);

PostRouter.js

router.get("/full/:postId", async (req, res) => {
  const postId = req.params.postId;

  const post = await Post.findById(postId).populate({
    path: "comments",
    populate: {
      path: "subComments",
    },
    // how can i populate infinitely down in the path subComments?
  });

  res.json(post);
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM