最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Joi validation - not allowed empty object - Stack Overflow

programmeradmin1浏览0评论

Through an HTTP request, I receive from client side the following body:

{
    a: string,
    b: string,
    c: string
}

I want to validate them with joi, so I do:

const MySchema = Joi.Object<MyModel>().keys({
    a: Joi.string().alfanum().min(1).max(150).optional(),
    b: Joi.string().alfanum().min(1).max(150).optional(),
    c: Joi.string().alfanum().min(1).max(150).optional(),
}).required()

This allows empy objects.

How can I say to joi to not allow empty object? I want the body request to have at least one of those keys. For now I haven't found the solution.

I know that I can handle it in the API but I don't want to write useless code.

Thank you!

Through an HTTP request, I receive from client side the following body:

{
    a: string,
    b: string,
    c: string
}

I want to validate them with joi, so I do:

const MySchema = Joi.Object<MyModel>().keys({
    a: Joi.string().alfanum().min(1).max(150).optional(),
    b: Joi.string().alfanum().min(1).max(150).optional(),
    c: Joi.string().alfanum().min(1).max(150).optional(),
}).required()

This allows empy objects.

How can I say to joi to not allow empty object? I want the body request to have at least one of those keys. For now I haven't found the solution.

I know that I can handle it in the API but I don't want to write useless code.

Thank you!

Share Improve this question asked Apr 10, 2021 at 12:59 user3001286user3001286
Add a ment  | 

1 Answer 1

Reset to default 11

I solved it with

Joi.object<MyModel>.keys({/*My keys*/}).required().min(1)
发布评论

评论列表(0)

  1. 暂无评论