我正在处理产品和类别
我创建了这两种类型
type Category = {
parent: Category | null; // is this ok?
name: String;
};
type Product = {
categories: Category[];
name: String;
qty: Number;
price: Number;
};
然后我创建了模型
x一个一个一个一个x一个一个二个x
vs代码显示没有错误,但当我运行服务器时,我得到了错误:
TypeError:无效的架构配置:MongooseArray
不是路径categories
上的有效类型。
productSchema的categories不是一个Category数组吗?
我也试过categories: { type: [Category], required: true }
没有成功
1条答案
按热度按时间ccgok5k51#
有可能的方法来做到这一点,但简单的只是使用这个