Rumah > Soal Jawab > teks badan
Saya mempunyai apl yang dibangunkan menggunakan React Native. Saya menggunakan react-hook-form untuk skrin log masuk dan pendaftaran. Saya mempunyai skema pengesahan yang saya buat. Saya tidak boleh menggunakan skema pengesahan ini dengan peraturan pengawal bentuk react-hook kerana saya tidak boleh menetapkan nilai input, tolong bantu!
const formKeys = { email: 'email', password: 'password', }; const { handleSubmit, control, formState: {errors}, } = useForm(); <Controller control={control} name={formKeys.email} render={({field: {onChange, value}}) => ( <InputFields errorMessage={errors[formKeys.email]?.message.toString()} value={value} onChangeText={onChange} autoCapitalize={'none'} placeholder={t('common:email')} image={ <View style={styles.userIconsStyle}> <EmailIcon/> </View> } /> )} rules={{ required: emailValidation() //input value required here, minLength: minLengthValidation(validationSchema.email.minLength), maxLength:maxLengthValidation(validationSchema.email.maxLength), }} /> /*validation schema*/ export const emailValidation = (v: string): boolean | string => { const {t,i18n}=useTranslation(); const emailRegx = /^[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[A-Za-z]+$/; if (v) { return emailRegx.test(v) || `${t('common:errorMessages:invalidEmailAddress')}`; } else return `${t('common:email')} ${t('common:errorMessages:isRequired')}`; };
P粉8113290342024-03-27 11:04:11
Saya mencipta contoh mudah menggunakan React js dan bukannya React Native (ia tidak akan berbeza di sini)
import { useForm, Controller } from "react-hook-form"; type FormValues = { email: string; }; const emailValidation = (v: string): boolean | string => { // const {t,i18n}=useTranslation(); const emailRegx = /^[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[A-Za-z]+$/; if (v) { return emailRegx.test(v) || "invalidEmailAddress"; } else return "isRequired"; }; export default function App() { const { handleSubmit, control, formState: {errors} } = useForm({mode: 'onChange'}); console.log(errors); return ( ); }
Kotak pasirContoh di sini