“Yup React” Kod odpowiedzi

Tak tylko znaki Regex Reagation React

yup.string()
   .required("Please enter the required field")
   .matches(/^[aA-zZ\s]+$/, "Only alphabets are allowed for this field ")
Jash_World

YUP NPM

npm i yup --save
Faithful Falcon

Yup React

npm install -S yup
Mohamad

Tak Oneof

// mixed.oneOf(arrayOfValues: Array<any>, message?: string | function): Schema Alias: equals
// Whitelist a set of values. Values added are automatically removed from any blacklist if they are in it. The ${values} interpolation can be used in the message argument.

// Note that undefined does not fail this validator, even when undefined is not included in arrayOfValues. If you don't want undefined to be a valid value, you can use mixed.required.

let schema = yup.mixed().oneOf(['jimmy', 42]);

await schema.isValid(42); // => true
await schema.isValid('jimmy'); // => true
await schema.isValid(new Date()); // => false
Fusinato

Odpowiedzi podobne do “Yup React”

Pytania podobne do “Yup React”

Więcej pokrewnych odpowiedzi na “Yup React” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu