未在node.js中定义Moongose模式

时间:2016-02-28 14:23:54

标签: javascript node.js mongodb mongoose

我使用moongose和express.js

nil

上述代码中存在错误。我不知道有什么不对......

1 个答案:

答案 0 :(得分:1)

您忘了定义 Schema 对象:

var mongoose = require('mongoose');
var Schema = mongoose.Schema; // <-- you forgot to define it here

var UserSchema = new Schema({
    name: {
        type: String
    },
    email: {
        type: String
    },
    password: {
        type: String
    }
});