Как настроить пользовательские сообщения об ошибках в @ hapi / joi? - PullRequest
0 голосов
/ 16 октября 2019

Я создал текущую схему для проверки с использованием Joi

const createProfileSchema = Joi.object().keys({
  username: Joi.string()
    .required()
    .message("username is required")
    .empty()
    .message("username is not allowed to be empty")
    .min(5)
    .message("username must be greater than 5 characters")
    .max(20)
    .message("username must be less than 5 characters")
});

Но она выдает текущую ошибку:

 Cannot apply rules to empty ruleset or the last rule added does not support rule properties

      4 |   username: Joi.string()
      5 |     .required()
    > 6 |     .message("username is required")
        |      ^
      7 |     .empty()
      8 |     .message("username is not allowed to be empty")
      9 |     .min(5)

На самом деле я хочу установить пользовательское сообщение для каждой отдельной ошибкислучай

1 Ответ

1 голос
/ 16 октября 2019

Вы можете попробовать что-то подобное с последней версией пакета @ hapi / joi.

const Joi = require("@hapi/joi");

const createProfileSchema = Joi.object().keys({
  username: Joi.string()
    .required()
    .empty()
    .min(5)
    .max(20)
    .messages({
      "string.base": `"username" should be a type of 'text'`,
      "string.empty": `"username" cannot be an empty field`,
      "string.min": `"username" should have a minimum length of {#limit}`,
      "string.max": `"username" should have a maximum length of {#limit}`,
      "any.required": `"username" is a required field`
    })
});

const validationResult = createProfileSchema.validate(
  { username: "" },
  { abortEarly: false }
);

console.log(validationResult.error);

Подробную информацию можно найти в документации:

https://github.com/hapijs/joi/blob/master/API.md#list-of-errors

...