为了账号安全,请及时绑定邮箱和手机立即绑定

Joi 数组减速器?

Joi 数组减速器?

SMILET 2023-04-14 15:05:07
我有一组 Joi 字符串:const item = Joi.string().max(50) const items = Joi.array().items(item).max(20)每个单独的项目最多可以有 50 个字符,并且最多有 20 个项目。到目前为止一切顺利,但是......我还必须验证数组中所有字符串的总长度不超过 200 个字符。纯粹在 Joi 中有可能吗?
查看完整描述

1 回答

?
交互式爱情

TA贡献1712条经验 获得超3个赞

看起来您可以使用any.custom 方法并向您传递自定义验证逻辑。

基于该文档,我们首先需要创建一个函数来验证接受两个参数的字符串数组,即“值”和“助手”对象。

const contentsLength = (value, helpers) => {

  // do a map reduce to calculate the total length of strings in the array

  const len = value.map((v) => v.length).reduce((acc, curr) => acc + curr, 0);


  // make sure that then length doesn't exceed 20, if it does return an error using

  // the message method on the helpers object 

  if (len > 200) {

    return helpers.message(

      "the contents of the array must not exceed 200 characters"

    );

  }


  // otherwise return the array since it's valid

  return value;

};

现在将它添加到您的items架构中


const items = Joi.array().items(item).max(20).custom(contentsLength);


查看完整回答
反对 回复 2023-04-14
  • 1 回答
  • 0 关注
  • 124 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信