猫鼬 if (!this.modelSchemas[name]) 错误

时间:2021-04-25 09:32:06

标签: node.js mongodb express mongoose-schema mongoose-web-server

每当我尝试使用下面的代码进行连接时,

const mongoose = require('mongoose');
 
// var Model = mongoose.model.bind(mongoose); didnt work

var imageSchema = new mongoose.Schema({
 
  name: String,
  dob: String,
  breed: String,
  details: String,
    img:
    {
        data: Buffer,
        contentType: String
    }
 
});

module.exports = new mongoose.model('Image', imageSchema);

我在控制台中记录了这个错误

if (!this.modelSchemas[name]) {
                        ^

TypeError: Cannot read property 'Image' of undefined

我已经按照另一个页面上的建议尝试了模型 bind mongoose,但效果不佳

1 个答案:

答案 0 :(得分:0)

model 是一种返回模型的方法。你不应该用 new:

调用它
module.exports = mongoose.model('Image', imageSchema);