如何通过不是_id的字段填充

时间:2019-10-29 16:07:23

标签: mongodb mongoose mongoose-schema mongoose-populate

我有两个模式-称它们为作者和书本。作者看起来像这样:

{
  name: String, // e.g. "Douglas Adams"
  birthday: Date,
  // [...]
}

一本书看起来像这样:

{
  author: String, // The author's name (e.g. "Douglas Adams")
  title: String, // e.g. "Hitchhiker's guide to the galaxy",
  // [...]
}

如何填充书籍的作者-我只有他们的名字。这很重要:我不能使用虚拟,并且我希望不要将其名称存储在_id 中,因为代码库存在一些问题,这可能意味着很多不必要的工作

0 个答案:

没有答案