嗨,有人可以查看我的代码吗?我正在后端实现身份验证我正在构建一个侧面项目,以提高我对JavaScript的理解。
我不确定为什么mongoose发现的诺言未定义。
我有两个需要帮助的功能。一个是帮助功能,将传递给控制器。
import db from '../models';
import bcrypt from 'bcrypt';
import validateLogin from '../validations/login';
import isEmpty from 'lodash/isEmpty';
const loginController = {};
loginController.login = function(req,res){
validateLogin(req.body).then(({isValid, errors }) => {
// isValid is undefined here
// This is the problem
if(isValid){
// give token
res.status(200).json({
success: true,
token: 'here is your token'
});
} else {
res.status(401).json({
errors
});
}
}).catch(err =>{
console.log(err)
});
};
export default loginController;
另一个是控制器函数本身,它将根据辅助函数是否返回有效或无响应来使用令牌。
import validator from 'validator';
import db from '../models';
import isEmpty from 'lodash/isEmpty';
import bcrypt from 'bcrypt';
function validateLogin(data){
const { userInput, password } = data;
const errors = {};
if(validator.isEmpty(userInput)){
errors.userInput = 'username is required';
}
if(validator.isEmpty(password)){
errors.password = 'password is required';
}
return db.User.find({$or:[{ username: userInput }, { email: userInput }]}).then(existingUser =>{
if(existingUser.length > 0){
// User exists, check if password matches hash
const user = existingUser[0];
bcrypt.compare(password, user.password_digest).then(valid => {
if(!valid){
errors.password = 'Invalid Password';
}
console.log('from prmomise');
return {
isValid: isEmpty(errors),
errors
};
}).catch(err => console.log(err));
} else {
errors.userInput = 'username or email does not exist';
return {
isValid: isEmpty(errors),
errors
};
}
});
}
export default validateLogin
答案 0 :(得分:1)
return
来电似乎缺少bcrypt
:
return bcrypt.compare(password, user.password_digest).then(valid => {
// password check and returning result object
}).catch(err => console.log(err));
如果没有它,您的validateLogin
函数最终会返回一个解析为undefined
的承诺。