const mongoose = require('mongoose');
const productSchema = new mongoose.schema({
name: String,
price: Number,
brand: String
}, {
timestamps: true
});
module.exports = mongoose.model('Product', productSchema);
字符串
以上是我的代码,我写的学习,任何人都可以请帮我解决我所面临的错误
2条答案
按热度按时间gojuced71#
我也遇到过同样的问题。单词“Schema”应该以大写字母“S”开头,以避免此错误。一旦你把'mongoose.schema'改为'mongoose.schema',它就可以正常工作了。
字符串
xnifntxz2#
应该是mongoose.Schema()!