인프런 커뮤니티 질문&답변

hansolbangul님의 프로필 이미지

작성한 질문수

따라하며 배우는 노드, 리액트 시리즈 - 기본 강의

노드 리액트 기초 강의 #11 로그인 기능 with Bcrypt (1)

userSchema.pre 안에 function 을 화살표 함수로 바꿀 수 없나요?

해결된 질문

21.05.12 13:00 작성

·

185

0

userSchema.pre('save', function (next) {
// 비밀번호 암호와
var user = this;
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();
}
});

이거를 function 들을 화살표 함수로 바꿔보았는데 에러가 뜹니다. 혹시 왜그런지 알 수 있을까요?

답변 1

0

devjeenie님의 프로필 이미지

2022. 02. 12. 03:08

변수 user에 userSchema를 this로 담았는데

arrow function은 this바인딩을 하지 않아서 this가 userSchema가 아닌 다른게 들어간 듯 합니다