React Native - 如何在应用程序屏幕上显示错误身份验证消息

发布于 2025-01-19 09:30:05 字数 1579 浏览 0 评论 0原文

我有一个注册屏幕,在其中,当我填写输入表格并提交输入表格时,一条错误消息“已经收集了电子邮件”,我想要在<<<<<<<<message>代码> CMD在我的注册屏幕上显示。

regumtration.js屏幕

    const handleSubmit = async ({ name, email, password } ) => {
        await axios.post(userRegister, 
            { 
                name, 
                email,
                password, 
            })
            .then((response) => { 
                console.log(response.data);
            })
            .catch(error => { 
                if (error.response) {
                    console.log(error.response.data);
                  }
            }); 
    }


<Formik
   initialValues={{ name: '', email: '', password: '' }}
   onSubmit={handleSubmit}
   validationSchema={validationSchema}
>
{ ({ handleChange, handleSubmit }) => (
   <>
            <View><Text>Show the error message here <Text/></View>
            {/* -------------- Form -------------- */}
            <View>
                <TextInput
                    onChangeText={handleChange("name")}
                    placeholder = 'Name'
                />

                ...... other form here
            </View>


            {/* -------------- Button -------------- */}
                <TouchableOpacity  onPress={ handleSubmit } >
                    <TextBold style={styles.fontColor}>Submit</TextBold>
                </TouchableOpacity>                         
   </> 
) }
</Formik>

I have a registration screen, in which when I fill out the input form with an existing details and submit, an error message 'the email has already been taken', I want the message that show in the cmd to display on my registration screen.

registration.js screen

    const handleSubmit = async ({ name, email, password } ) => {
        await axios.post(userRegister, 
            { 
                name, 
                email,
                password, 
            })
            .then((response) => { 
                console.log(response.data);
            })
            .catch(error => { 
                if (error.response) {
                    console.log(error.response.data);
                  }
            }); 
    }


<Formik
   initialValues={{ name: '', email: '', password: '' }}
   onSubmit={handleSubmit}
   validationSchema={validationSchema}
>
{ ({ handleChange, handleSubmit }) => (
   <>
            <View><Text>Show the error message here <Text/></View>
            {/* -------------- Form -------------- */}
            <View>
                <TextInput
                    onChangeText={handleChange("name")}
                    placeholder = 'Name'
                />

                ...... other form here
            </View>


            {/* -------------- Button -------------- */}
                <TouchableOpacity  onPress={ handleSubmit } >
                    <TextBold style={styles.fontColor}>Submit</TextBold>
                </TouchableOpacity>                         
   </> 
) }
</Formik>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文