I want to validate input strings which are in mysql datetime format like this:
YYYY-MM-DD HH:mm:ss
2018-10-12 19:32:55
How can I do that?
I have used this code but it allows strings like 222018-10-12 19:32:55 which are invalid.
created_at: Joi.date().required()
I want to validate input strings which are in mysql datetime format like this:
YYYY-MM-DD HH:mm:ss
2018-10-12 19:32:55
How can I do that?
I have used this code but it allows strings like 222018-10-12 19:32:55 which are invalid.
created_at: Joi.date().required()
Share
Improve this question
asked Nov 13, 2018 at 9:04
SalarSalar
5,5197 gold badges56 silver badges89 bronze badges
1
-
I think you will find that
YYYY
is pretty much universally interpretted as "Long Year format", meaning2018
as opposed to just18
which would typically just bey
. This is generally because most parsing libraries will adhere to thestrftime
standards, and222018
though "far into the future" is actually still valid as a "long year". If you expect something different, you probably want a rule based on a regular expression for the string. So something withJoi.string().regex()
instead. – Neil Lunn Commented Nov 13, 2018 at 9:13
1 Answer
Reset to default 8As of version v10 joi.format()
was removed and instead you can use joi-date-extensions
which provides validation helpers like this:
Joi.date().format('YYYY-MM-DD');