首页 > 解决方案 > 猫鼬 if (!this.modelSchemas[name]) 错误

问题描述

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

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

我已经按照另一个页面上的建议尝试了模型绑定猫鼬,但这也不起作用

标签: node.jsmongodbexpressmongoose-schemamongoose-web-server

解决方案


model是返回模型的方法。你不应该用它来调用它new

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

推荐阅读