我使用moongose和express.js
nil
上述代码中存在错误。我不知道有什么不对......
答案 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
}
});