最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Joi - validate strings in mysql datetime format - Stack Overflow

programmeradmin1浏览0评论

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", meaning 2018 as opposed to just 18 which would typically just be y. This is generally because most parsing libraries will adhere to the strftime standards, and 222018 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 with Joi.string().regex() instead. – Neil Lunn Commented Nov 13, 2018 at 9:13
Add a ment  | 

1 Answer 1

Reset to default 8

As 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');

发布评论

评论列表(0)

  1. 暂无评论