작성
·
183
0
안녕하세여
질문 드릴게 있는데여 회원 가입 success가 false라서여 혹시 머가 잘못되었는지 봐주실수 있으신가여 감사합니다
https://github.com/hyunsokstar/boiler-plate/blob/master/models/User.js
답변 3
1
userSchema.pre('save', function(next) { | |
let user = this; | |
// Password encryption | |
if(user.isModified('password')) { | |
bcrypt.genSalt(saltRounds, function(err, salt) { | |
if(err) return next(err); | |
bcrypt.hash(user.password, salt, function(err, hash) { | |
if(err) return next(err); | |
user.password = hash; | |
next(); | |
}); | |
}); | |
} else { | |
next(); | |
} | |
}); |
0
0