gpt4 book ai didi

reactjs - {React Native} 提交后重置 Formik 表单

转载 作者:行者123 更新时间:2023-12-04 15:27:36 25 4
gpt4 key购买 nike

提交后,我一直在重置我的表单。

这是我所拥有的

  const PostEvent = () =>{

//Omitted code for brevity.

return(
<Formik
initialValues ={{user: userName.currentUser.displayName, description: '',datePosted: new Date(), location: '', eventDate: '', title: ''}}
onSubmit ={(values, {resetForm}) =>{
firebase.firestore().collection('PostedFunEvents').add({
datePosted: values.datePosted.toDateString(),
description: values.description,
eventDate: date.toDateString(),
eventTime: date.toTimeString(),
location: values.location,
title: values.title,
user: firebase.auth().currentUser.displayName,
userId : firebase.auth().currentUser.uid
});
resetForm({values:''})
}}>
{props =>(

<ScrollView keyboardShouldPersistTaps='always'>
<DismissKeyBoard>
<View style={{flex:1}}>
<View style={styles.form}><Text style={styles.text}>Pick a place for the event</Text></View>
<View style= {{paddingTop:20}}>
<GoogleAutocomplete
placeholder = 'Insert place to post about '
onPress={(data, details = null) => {
{props.values.location = data.description}
}}>
</GoogleAutocomplete>
</View >

<View style={styles.form}>

<Text style={styles.text}>{userName.currentUser.displayName}</Text>
<TextInput
placeholder= 'Title of the event'
onChangeText = {props.handleChange('title')}
style={styles.text}/>
<TextInput
placeholder= 'Description (e.g This is located...)'
multiline={true}
onChangeText = {props.handleChange('description')}
values = {props.values.description}
style={styles.textBox}/>

<Text style={styles.text} >Click on the below icons to pick a time and a date for the event</Text>

<DateTimeImage onPress={showTimepicker} name = 'alarm'>Time?</DateTimeImage>
<DateTimeImage onPress={showDatepicker} name = 'calendar'>Date?</DateTimeImage>

{show && (<DateTimePicker onChange={onChange} value = {date} mode = {mode}></DateTimePicker>)}

<Button onPress={props.handleSubmit}>Submit</Button>

</View>

</View>
</DismissKeyBoard>
</ScrollView>
)}
</Formik>
)
}

这个任务应该很简单,但我似乎无法让它工作。我看了很多教程和SO帖子,他们似乎都有相同的想法,就是将回调重置函数传递给 onSubmit <Formik>的 Prop 成分。
任何人都知道我可以尝试什么?

提前致谢。

最佳答案

当您重置表单时,值应该是initialValues 的格式。您可以将initalValues作为对象取出并将其传递给重置表单

const initialValues = {
user: userName.currentUser.displayName,
description: '',
datePosted: new Date(),
location: '',
eventDate: '',
title: ''
}

..
<Formik
initialValues ={initialValues}
onSubmit ={(values, {resetForm}) =>{
firebase.firestore().collection('PostedFunEvents').add({
datePosted: values.datePosted.toDateString(),
description: values.description,
eventDate: date.toDateString(),
eventTime: date.toTimeString(),
location: values.location,
title: values.title,
user: firebase.auth().currentUser.displayName,
userId : firebase.auth().currentUser.uid
});
resetForm({values: initialValues})
}}>

已链接 github issue

关于reactjs - {React Native} 提交后重置 Formik 表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61949635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com