강의

멘토링

커뮤니티

Inflearn Community Q&A

flykimjiwon's profile image
flykimjiwon

asked

Node and React series that you can learn by following - Basic lecture

12강 무한로그인 되시는분들을 위한글

Written on

·

232

1

저도 검색하고찾았네요! 영상속에 오타인지

userSchema.methods.comparePassword = function (plainPassword, cb) {
//plainPassword 1234567 암호화된 비밀번호 <?????>
bcrypt.compare(plainPassword, this.password, function (err, isMatch) {
if (err) return cb(err);
cb(null, isMatch);
});
};
if (err) return cb(err); <-이 부분이 영상에선 , 로 되어있습니다.
cb(null, isMatch);
nodejsreact

Answer 2

0

감사합니다.

0

John Ahn님의 프로필 이미지
John Ahn
Instructor

알려주셔서 감사합니다 ^ ^ 

flykimjiwon's profile image
flykimjiwon

asked

Ask a question