I am a newbie to expressjs and express-validator. I have a registration form and user has to submit email address (with other fields). my validation rule for email field with 'express-validator' looks like
req.checkBody('email', 'Email field is required').notEmpty().isEmail().withMessage('Invalid email address');
and I am using jade to print out the errors like
if errors.length
.alert.alert-danger
a.close(href='#', data-dismiss='alert', aria-label='close') ×
for error in errors
div=error.msg
the above code print out all the form errors associated with a field, now the problem is, if email field is empty, it shows two error messages 'Email field is required' and 'Invalid email address'
I want to evaluate the second validation isEmail() only if the email is not empty. If empty then it need to show only one error message 'Email field is required'. Is there any solution to this ?
I am a newbie to expressjs and express-validator. I have a registration form and user has to submit email address (with other fields). my validation rule for email field with 'express-validator' looks like
req.checkBody('email', 'Email field is required').notEmpty().isEmail().withMessage('Invalid email address');
and I am using jade to print out the errors like
if errors.length
.alert.alert-danger
a.close(href='#', data-dismiss='alert', aria-label='close') ×
for error in errors
div=error.msg
the above code print out all the form errors associated with a field, now the problem is, if email field is empty, it shows two error messages 'Email field is required' and 'Invalid email address'
I want to evaluate the second validation isEmail() only if the email is not empty. If empty then it need to show only one error message 'Email field is required'. Is there any solution to this ?
Share Improve this question asked May 30, 2016 at 18:04 user53141user53141 252 silver badges7 bronze badges 1- 1 Seems OP found tehir answer here: github./ctavan/express-validator/issues/235 – James Hibbard Commented Dec 21, 2017 at 15:59
5 Answers
Reset to default 4use the bail() method
app.post('/', [
check('username')
.isEmail()
.bail()
// If username is not an email, checkBlacklistedDomain will never run
.custom(checkBlacklistedDomain)
.bail()
// If username is not an email or has a blacklisted domain, checkEmailExists will never run
.custom(checkEmailExists);
]);
Since isEmail() seems to already validate that the string is not empty, why don't you just get rid of notEmpty()? 'Invalid email address' is informative enough for an error message if the email is left blank.
Or display errors one by one with
div=errors[0].msg
instead of
for error in errors
div=error.msg
You could register a custom validator in express-validator that does what you want, but why plicate your life :)
It's work for me. try this
req.getValidationResult().then(result=> {
var errors = result.useFirstErrorOnly().array();
});
const errors = validationResult(req);
if (errors.isEmpty()) {
return next();
}
const extractedErrors = []
errors.array({ onlyFirstError: true }).map(err => extractedErrors.push({ [err.param]: err.msg }));
return res.status(422).json({
errors: extractedErrors,
});
try this .mapped()
Returns: an object where the keys are the field names, and the values are the validation errors
Gets the first validation error of each failed field in the form of an object.
const errors = validationResult(req).mapped()