Skip to content
Advertisement

How to display Sequelize validation error messages in Express API

I have this Organization model used in a Node.js/Express API with Sequelize ORM running MySQL. When I violate the 2-100 character rule under validation in the first code example below I get the classic err item from the catch block in the second code example, which doesn’t contain any information about the validation error.

I would like instead to display the validation error message you can see under validation { len: { msg: ...}} in the model. At least console.log it, and then later display it to the end user.

However, the Sequelize manual and any other information I can find don’t explain how I make use of this custom error message. So my question is how can I make use of it and display it.

Model:

JavaScript

Controller:

JavaScript

The Sequelize documentation for validation and constraints is found here: https://sequelize.org/master/manual/validations-and-constraints.html

The validation is built on Validatorjs (https://github.com/validatorjs/validator.js) which unfortunately also lacks practical info on the use of the validation object. I guess that means it must be self explanatory, but as I’m a noob I am lost.

Advertisement

Answer

I tried your same validation on my local project on firstName field and I could get sequelize error like this

JavaScript

validation output

as you can see you can check if err.name is SequelizeValidationError and then loop over err.errors array and get message for field on path and rest other properties are also there.

Error Display example:

JavaScript

you’ll get an object like

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement