nodejs model과 schema
모델이란 폴더를 만들고 안에 User.js 파일을 만들었다. const mongoose = require('mongoose'); const userSchema = mongoose.Schema({ name: { type: String, maxlength: 50, }, email: { type: String, trim: true, //x e ctler@naver.com 이런 값이 들어왔을 때 trim은 공백을 없애 준다. unique: 1 //중복된 값은 사용하지 못한다. }, password: { type: String, minlength: 5 }, lastname: { type: String, maxlength: 50 }, role: { //롤은 어떤 유저가 관리자가 될 수도 있고 일반 유저가 될 수 있..
2021. 6. 11.