如何通过Joi一次获得所有验证错误?

时间:2019-04-05 07:39:03

标签: node.js validation joi

我面临与Joi验证相关的问题,每当我向Joi发送请求时,它只会引发单个错误。

var CreateValidationSchema = Joi.object().keys({
      name: Joi.string().required().max(255).label("Name"),
      branch_name: Joi.string().required().max(255).label("Branch Name"),
      ifsc_code: Joi.string().required().max(15).label("IFSC Code"),
      micr_code: Joi.string().required().max(15).label("MICR Code"),
      swift_code: Joi.string().required().max(15).label("Swift Code"),
      address: Joi.string().optional().allow(null).allow("").label("Address"),
      description: Joi.string().optional().allow(null).allow("").label("Description"),
      is_approved: Joi.boolean().required().default(0).label("Approved")
});

Joi.validate(req.body, CreateValidationSchema).then(() => {
      next();
}).catch((error) => {
      _Response.ErrorResponse(res, req.lang, _Response.MESSAGES.VALIDATION_ERROR, error)
})

我的模式如上,请帮助。

1 个答案:

答案 0 :(得分:2)

只需在Joi.validate()函数中应用{ abortEarly: false }

赞:

Joi.validate(req.body, CreateValidationSchema, { abortEarly: false } ).then(() => {
      next();
}).catch((error) => {
      _Response.ErrorResponse(res, req.lang, _Response.MESSAGES.VALIDATION_ERROR, error)
})

也许会有所帮助