从开始验证日期字段是否大于x天。
现在我有一个片段,用于检查日期是否大于现在。
planned_date: Joi.date().greater('now').required()
但我想验证planned_date
是否比现在至少多2天。这可能与moment.js
结合使用,但无法使其发挥作用。
这将检查大于2天的日期,我们正在做的是使用Date.now()
在epoch中获得当前时间戳,稍后在epoch添加2天时间以获得我们想要的验证。
planned_date: Joi.date().required().greater(Date.now() + 48 * 60 * 60 * 1000)