mongoose TypeError:Schema不是构造函数

时间:2016-10-27 09:20:04

标签: javascript node.js mongoose mongoose-schema

我遇到了一件奇怪的事。我有几个猫鼬模型 - 在其中一个(只有一个!)我得到这个错误:

TypeError: Schema is not a constructor

我觉得很奇怪,因为我有几个工作模式。我尝试在非工作模式中记录mongoose.Schema,它确实与我工作模式中的mongoose.Schema不同 - 这怎么可能?代码几乎相同。 这是非工作模式的代码:

var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var errSchema = new Schema({
  name: String,
  images:[{
    type:String
  }],
  sizes:[{
    type: String
  }],
  colors:[{
    type: Schema.ObjectId,
    ref: 'Color'
  }],
  frontColors:[{
    type: Schema.ObjectId,
    ref: 'Color'
  }],
  script: Boolean
},{
  timestamps: true
});

var Err = mongoose.model('Err', errSchema);

module.exports = Err;

工作架构的代码:

var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var colorSchema = new Schema({
  name: String,
  image: String,
  rgb: String,
  comment: String,
});

var Color = mongoose.model('Color', colorSchema);

module.exports = Color;

任何帮助将不胜感激!

10 个答案:

答案 0 :(得分:14)

我遇到了同样的事情。我之前有这样的代码

    var mongoose = require('mongoose');
    var Schema = mongoose.Schema();
    var schema = new Schema({
        path : {type:string , required:true},
        title: {type:string , required: true}
    })
 module.export = mongoose.model('game', schema);

然后我使用下面的脚本解决了构造函数问题

   var mongoose = require('mongoose');
    var schema = mongoose.Schema({
        path : {type:string , required:true},
        title: {type:string , required: true}
    })
 module.export = mongoose.model('game', schema);

答案 1 :(得分:4)

应该是Schema.Types.ObjectId,而不是Schema.ObjectIdhttp://mongoosejs.com/docs/schematypes.html

答案 2 :(得分:2)

我已经通过导入大写的Schema解决了这个问题。

上一个:

const Scheme = mongoose.schema;

修复后:

const Schema = mongoose.Schema;

完整架构:

const mongoose = require('mongoose');
const Schema = mongoose.Schema;

const ItemSchema = new Schema({
    name : {
        type: String,
        required : true
    },
    date : {
        type : Date,
        default : Date.Now
    }
});
module.exports = mongoose.model('Item', ItemSchema);

答案 3 :(得分:1)

了解该党迟到了,但是下面的代码对我有用,对于使用猫鼬版本5.2.15的人可能会有所帮助

const mongoose = require('mongoose');
const Scheme = mongoose.Schema;

const ItemSchema = new Scheme({
    name: {
        type: String,
        require: true
    },
    date: {
        type: Date,
        default: Date.now
    }
});

module.exports = Item = mongoose.model('Item', ItemSchema);

答案 4 :(得分:1)

对于仍然有错误的任何人

  1. 检查 package.json 上的 mongoose 版本,看看它是否是旧版本
  2. 重新安装到最新版本

为我工作!!

答案 5 :(得分:1)

我遇到这个问题,我的解决方案是在 module.export 中添加 (s),我忘了在最后添加 s,这就是为什么它让我认为我的 Schema 不是构造函数。

答案 6 :(得分:0)

使用mongoose.Schema代替let Schema = mongoose.Schema();

答案 7 :(得分:0)

我遇到了同样的问题

先前的代码

module.export = mongoose.model('AllClassList', allClassListSchema);

正确的代码

module.exports = mongoose.model('AllClassList', allClassListSchema);

我在导出结束时缺少“ s”

答案 8 :(得分:0)

在我的情况下,问题是出口应在末尾:

问题:出口缺失

module.export = mongoose.model('Event', EventSchema);

解决方案:在出口中添加(s)

module.exports = mongoose.model('Event', EventSchema);

答案 9 :(得分:-1)

问题既不是大写 Schama 也不是忘记导出的“s”。 它在我编码时不小心删除了:“('猫鼬')”!!!所以我再次添加了它!问题解决了!!

const mongoose = require('mongoose');