首页 > 解决方案 > 根据允许的值/字符串数组验证字符串

问题描述

Yup中,是否有任何内置检查来根据允许值数组验证字符串?还是我必须为此编写自己的测试函数?

const fruit = 'apple';
const allowedFruits = ['orange', 'cherry'];
// I want to check if fruit is one of the allowedFruits. Fruit is coming from a text field / user input.

更新: 我想强调这个问题是关于Yup验证库的,而不是如何用纯 JavaScript 来做。

标签: javascriptvalidationyup

解决方案


尝试使用:

const fruit = 'apple';
const fruit1 = 'orange';
const allowedFruits = ['orange', 'cherry'];
console.log(allowedFruits.includes(fruit));
console.log(allowedFruits.includes(fruit1));


推荐阅读