nAuth-restful-api icon indicating copy to clipboard operation
nAuth-restful-api copied to clipboard

定义Schema时不可为空约束应该是 required,而不是 require吧

Open guchenhui opened this issue 7 years ago • 0 comments

const UserSchema = new Schema({ name: { type: String, unique: true, // 不可重复约束 required: true // 不可为空约束 }, password: { type: String, required: true }, token: { type: String } });

guchenhui avatar Jun 21 '17 14:06 guchenhui