Mongoose Schema hasn't been registered for model
Posted shiazhen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mongoose Schema hasn't been registered for model相关的知识,希望对你有一定的参考价值。
报错模型未注册。
- 示例
const Goods = require(‘../../model/admin/Goods‘);//先引入你需要的关联模型
const res = await ctx.mongoose.find().populate({ path: ‘Goods ‘, model: Goods }).limit(10);//在这里使用Goods 就是你引入的模型,我的理解就是告诉他该往哪去找
以上是关于Mongoose Schema hasn't been registered for model的主要内容,如果未能解决你的问题,请参考以下文章
使用 Schema First 方法和 NestJS 在 Mongoose 中填充查询