猿问

Joi 数组减速器?

我有一组 Joi 字符串:

const item = Joi.string().max(50)
const items = Joi.array().items(item).max(20)

每个单独的项目最多可以有 50 个字符,并且最多有 20 个项目。

到目前为止一切顺利,但是......

我还必须验证数组中所有字符串的总长度不超过 200 个字符。

纯粹在 Joi 中有可能吗?


SMILET
浏览 125回答 1
1回答

交互式爱情

看起来您可以使用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);
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答