我的目标是以Formik形式使用基于Switch的自定义组件(来自React Native)。这是表单组件的代码:

class NewPreferences extends React.Component {
render() {
    return(
        <View style={styles.mainContainer}>
            <View style={styles.newPreferencesContainer}>
                <Formik
                    initialValues={{
                        food: true
                    }}
                    onSubmit={async (values, action) => {
                        await this.props.onSubmitPress(values)
                        action.setSubmitting(false)
                    }}
                    render={({
                        values,
                        errors,
                        touched,
                        handleChange,
                        handleBlur,
                        handleSubmit,
                        isSubmitting,
                    }) => (
                        <View style={styles.formikNewPreferences}>
                            <View style={styles.itemRow}>
                                <Field
                                    source={images.food.uri}
                                    onChange={handleChange('food')}
                                    value={values.food}
                                    name="food"
                                    component={ToggleButton}
                                />

                            </View>
                            <TouchableOpacity
                                style={styles.button}
                                onPress={handleSubmit}
                                disabled={isSubmitting}
                            >
                                <Text>Login</Text>
                            </TouchableOpacity>
                        </View>
                    )}
                    />
            </View>
        </View>
    );
}


组件ToggleButton是以下组件:

class ToggleButton extends React.Component<ToggleButtonInterface> {
render() {
    return(
        <View>
            <Image
                source={this.props.source}
            />
            <Switch
                onValueChange={this.props.onChange}
                value={this.props.value}
                />
        </View>

    );
}


}

似乎在undefined is not an object (evaluating '_a.type')_handleChange方法中切换Switch元素会引发错误:Switch。根据Formik的文档,我认为我只需要在自定义组件的props中传递Formik的handleChange,以便在切换Switch时,Formik更改其状态,然后将更改value。 cc>。
有人可以帮我解决这个问题吗?

最佳答案

Formik的handleChange期望以React.ChangeEvent调用。
由于onValueChange组件的Switch只会被布尔值调用,因此您需要使用Formik的setFieldValue来处理更改。

<Formik
  initialValues={{ switch: false }}
  onSubmit={ values => console.log(values) }
>
  {props => (
      <Switch
        value={props.values.switch}
        onValueChange={value =>
          props.setFieldValue('switch', value)
        }
      />
  )}
</Formik>

关于reactjs - 使用React Native Switch的Formik,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54422594/

10-11 05:44