最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to turn off strictpopulate in mongoose? - Stack Overflow

programmeradmin1浏览0评论

How can you populate something that is not in the schema? Mongoose is throwing the error Cannot populate path 'example' because it is not in your schema. Set the 'strictPopulate' option to false to override.

I tried adding strictPopulate: false to the Schema and the query. Both didn't work.

How can you populate something that is not in the schema? Mongoose is throwing the error Cannot populate path 'example' because it is not in your schema. Set the 'strictPopulate' option to false to override.

I tried adding strictPopulate: false to the Schema and the query. Both didn't work.

Share asked Sep 3, 2021 at 10:36 illiteratewriterilliteratewriter 4,3332 gold badges26 silver badges46 bronze badges 3
  • You can just create a virtual, this allows you to populate a value missing in your schema – Nikita Mazur Commented Sep 3, 2021 at 10:45
  • My schema is kind of dynamic. So, I don't think virtuals will solve the problem. – illiteratewriter Commented Sep 3, 2021 at 10:54
  • If its dynamic you can try using Discriminators) – Nikita Mazur Commented Sep 3, 2021 at 11:30
Add a ment  | 

2 Answers 2

Reset to default 9

It seems this works for me

document.populate([{ path: keyString, strictPopulate: false }]);

Suppose you have a product orderItem inside orderList. You can't populate producy when reading orderList, instead you can use:

.populate({ path: "orderItems", populate: "product" });
发布评论

评论列表(0)

  1. 暂无评论