我正在尝试使用hapijs/joi和joi-date-extensions 验证一些输入。我写这段代码example1.js:
const BaseJoi = require('joi');
const Extension = require('joi-date-extensions');
const Joi = BaseJoi.extend(Extension);
const schema = Joi.object().keys({
start_date: Joi.date().format('YYYY-MM-DD').raw(),
end_date: Joi.date().min(Joi.ref('start_date')).format('YYYY-MM-DD').raw(),
});
const obj = {
start_date: '2018-07-01',
end_date: '2018-06-30',
}
console.log(schema.validate(obj));
代码返回此错误:
child "end_date" fails because ["end_date" must be larger than or equal to "Sun Jul 01 2018 01:00:00 GMT+0100 (CET)"]
但是我想得到错误的原始输入,像这样:
child "end_date" fails because ["end_date" must be larger than or equal to "2018-07-01"]
当我在example2.js中尝试此指令时:
start_date = Joi.date().format('YYYY-MM-DD');
console.log(start_date.validate('2018-07-31'));
结果是:
Tue Jul 31 2018 00:00:00 GMT+0100 (CET)
当我在example3.js中使用raw()
时:
start_date = Joi.date().format('YYYY-MM-DD').raw();
console.log(start_date.validate('2018-07-31'));
它返回:
"2018-07-31"
在example1.js中,我想获取代码输入的原始日期。我该如何解决?
答案 0 :(得分:1)
.raw
控制数据如何传输到Joi.validate
的回调中,即验证过程后数据的外观。它不会控制错误发生的情况。
为此,您可能需要使用.error
。我从没使用过,但我想可能是这样的:
Joi.date().min(Joi.ref('start_date')).format('YYYY-MM-DD').raw().error(function (errors) {
var out = [];
errors.forEach(function (e) {
out.push(e.message.replace(/".*?"/g, function(match) {
var dateMatch = Date.parse(match);
if (isNaN(dateMatch)) {
return match;
} else {
// return formatted date from `dateMatch` here, too lazy to write it in p[l]ain JS...
}
}));
});
return out;
})