Joi 验证显示自定义错误消息

巴吞卡尔汗

嗨,我正在使用"@hapi/joi": "^15.1.1". 不幸的是,我现在无法更新到最新的 Joi 版本。

这是我的验证架构

 const schema = {
    name: Joi.string()
      .allow("")
      .max(30),
    addLine1: Joi.string()
      .required()
      .label("Address Line 1"),
    locality: Joi.string()
      .required()
      .label("City"),
    region: Joi.string()
      .required()
      .label("State"),
    zipCode: Joi.number()
      .required()
      .label("Zip Code"),
    phoneNo: Joi.string()
      .required("Required")
      .regex(/^[0-9]{3}\-[0-9]{3}\-[0-9]{4}$/)
      
  };

然后我验证并显示发生的第一个错误

const result = Joi.validate(this.state.addressDetails, this.schema, {
      abortEarly: true,
    });
 return const errors = result.error.details[0].message;

这有效。唯一的问题是我想显示自定义错误消息而不是默认错误消息。

地址的默认错误消息是"Address Line 1" is not allowed to be empty"而不是这个,我想显示"Address is required!"

对于正则表达式,默认值为

phoneNo with value "555" fails to match the required pattern: /^[0-9]{3}\-[0-9]{3}\-[0-9]{4}$/

相反,我想显示 please enter a valid phone number

我怎么能用 version 来实现这一点15.1.1较新版本的messages东西在这里无济于事。

布萨扎布拉欣

尝试从.error回调中返回消息

  addLine1: Joi.string()
      .required()
      .label("Address Line 1").error(()=>'"Address Line 1" is not allowed to be empty'),

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章