회원 가입 포스트 요청이 실패해서여
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(); } });