gpt4 book ai didi

reactjs - 如何在 react-apollo-hooks 和 formik 中使用突变?

转载 作者:行者123 更新时间:2023-12-03 16:22:59 25 4
gpt4 key购买 nike

在我的许多尝试中,我尝试将 react-apollo-hooks 和 formik 一起使用,但这似乎是不可能的。表格中的数据仅在 <Formik> 中可用。标签,并且在它之外无法访问。我也不能调用我的useMutation同时 Hook 并传递参数给它:

const SignUp = () => {
const classes = useStyles();
// The react-apollo-hook for useMutation
// Its not hard to call this, but it seems impossible to call it,
// with any sort of arguments.
// It seems pointless not being able to pass in data from the form
const [createUser, { loading }] = useMutation(CREATE_USER_MUTATION, {
variables: {
firstName: '???',
lastName: '???',
email: '???',
password: '???',
},
});
// Formik stuff goes down here. It's impossible to call `useMutation`
// with the argument of `values`
return (
<Formik
initialValues={{
firstName: '',
lastName: '',
email: '',
password: '',
showPassword: false,
}}
// This is the part that calls the hook.
// I see no way of passing arguments to `useMutation` from here
onSubmit={(values, { setSubmitting }) => createUser}
render={({submitForm, isSubmitting, values, setFieldValue}) => (
<div>
<h1>Sign up for a new account</h1>
<Form className={classes.container}>
<Field
className={classes.textField}
name="firstName"
type="text"
label="First name"
margin="dense"
variant="outlined"
component={TextField}
/>
</Form>
<Button
variant="contained"
color="primary"
margin="dense"
className={classes.button}
disabled={isSubmitting}
onClick={submitForm}
>
Sign Up
</Button>
</div>
)}
/>
);

};

那么我如何能够以某种方式将参数传递给 useMutation顶部的部分,来自 onSubmit ?似乎不可能将参数传递给钩子(Hook)。我认为我不能在查询名称之外添加任何其他数据 CREATE_USER_MUTATION以及具有设置的对象。

最佳答案

突变变量可以提供给单个突变调用,而不是 useMutation称呼。因此,您可以在组件的顶部执行此操作:

const [createUser, { loading }] = useMutation(CREATE_USER_MUTATION)

然后在您实际调用 createUser 后提供变量:
onSubmit={(values, { setSubmitting }) => createUser({ variables: values })}

关于reactjs - 如何在 react-apollo-hooks 和 formik 中使用突变?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57109680/

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