【发布时间】:2020-09-18 21:50:13
【问题描述】:
我正在尝试向我构建的仪表板添加更改密码选项。我的表单有三个输入,currentPassword、newPassword、confirmNewPassword。这是您对数据库的标准检查当前密码,如果匹配,则使用新密码更新它。
无论我做什么,我都无法让代码在匹配成功的地方运行(bcrypt.compare 之后的代码)。我知道我使用了正确的密码。我无法弄清楚我做错了什么。感谢您的帮助。
router.post("/changepassword", ensureAuthenticated, (req, res) => {
const { currentPassword, newPassword, confirmNewPassword } = req.body;
const userID = req.user.userID;
let errors = [];
//Check required fields
if (!currentPassword || !newPassword || !confirmNewPassword) {
errors.push({ msg: "Please fill in all fields." });
}
//Check passwords match
if (newPassword !== confirmNewPassword) {
errors.push({ msg: "New passwords do not match." });
}
//Check password length
if (newPassword.length < 6 || confirmNewPassword.length < 6) {
errors.push({ msg: "Password should be at least six characters." });
}
if (errors.length > 0) {
res.render("changepassword", {
errors,
name: req.user.name,
});
} else {
//VALIDATION PASSED
//Ensure current password submitted matches
User.findOne({ userID: userID }).then(user => {
//encrypt newly submitted password
bcrypt.compare(currentPassword, user.password, (err, isMatch) => {
if (err) throw err;
if (isMatch) {
console.log(user.password);
//Update password for user with new password
bcrypt.genSalt(10, (err, salt) =>
bcrypt.hash(newPassword, salt, (err, hash) => {
if (err) throw err;
user.password = hash;
user.save();
})
);
req.flash("success_msg", "Password successfully updated!");
res.redirect("/dashboard");
} else {
//Password does not match
errors.push({ msg: "Current password is not a match." });
res.render("changepassword", {
errors,
name: req.user.name,
});
}
});
});
}
});
【问题讨论】:
-
你应该在
bcrypt.hash回调中重定向
标签: javascript node.js mongodb mongoose bcrypt