因此,我对此进行了大量研究,并且遇到了一些问题。
router.post('/register', async (req, res) => {
const newUser = await usersDb();
// Define the user
const email = req.body.email;
const username = req.body.username;
const password = req.body.password;
const confirmPassword = req.body.confirmPassword;
// Start user already exist check
let userNameCheck = await newUser.findOne({ 'username': username});
req.check('email', 'Email is not valid.').isEmail()
.custom(async value => {
let emailCheck = await newUser.findOne({ 'email': value });
console.log(emailCheck);
console.log('Hmmm')
if (emailCheck !== null) {
return true;
} else {
return false;
}
}).withMessage('Email is already in use.');
//req.check('username', 'Username is required.').notEmpty();
req.check('password', 'Password is required.').notEmpty();
req.check('confirmPassword', 'Confirm password is required.').notEmpty();
// Get errors
let errors = await req.validationErrors();
if (errors) {
console.log(errors);
res.render('index', {
errors: errors
});
} else {
console.log('Still bad');
}
});
我在检查电子邮件时遇到问题。它似乎在大多数情况下都在工作,但它没有返回错误。我知道我使用的是同一封电子邮件,并且可以正确提取。但是验证不起作用。有什么想法吗?
答案 0 :(得分:0)
好吧,这次我确实可以正常工作:
req.check('email', 'Email is not valid.').isEmail()
.custom(async value => {
let emailCheck = await newUser.findOne({ 'email': value });
if (emailCheck !== null) {
console.log('User Exists');
return Promise.reject();
}
}).withMessage('Email is already in use.');
并且:
// Get errors
const errors = await req.getValidationResult();
console.log(errors.mapped())
if (!errors.isEmpty()) {
res.render('index', {
errors: errors.mapped()
});
} else {
console.log('Still bad');
}
答案 1 :(得分:0)
是的,威廉,您的答案是完全正确的,我只想补充一下其他好奇心的原因。
如果在自定义验证器中使用asyncFunction
,则必须返回一个Promise
对象。
当验证有效时,我们不需要该函数的任何内容,因此可以处理无效的情况,但是return false
无效,而Promise.reject()
无效。
此外,您可以使用Promise.resolve()
来完全更正您的代码。