我有这个 handleSubmit,它返回一个我应该在另一个组件中使用的密钥(verifyCode)。如何将此verifyCode传递给另一个组件?
const SendForm = ({ someValues }) => {
const handleSubmitAccount = () => {
dispatch(createAccount(id, username))
.then((response) => {
// I get this value from data.response, its works
const { verifyCode } = response;
})
.catch(() => {
});
};
return(
//the form with handleSubmitAccount()
)
}
export default SendForm;
另一个组件不是子组件,它是在此提交步骤之后加载的。但是不知道怎么转const verifyCode
。
这是加载组件的视图,它是一个步骤视图,一个接一个加载,我需要在FormConfirmation中获取const verifyCode
<SendForm onSubmit={handleStepSubmit} onFieldSubmit={handleFieldSubmit} />
<FormConfirmation onSubmit={handleStepSubmit} onFieldSubmit={handleFieldSubmit} />
有谁知道我怎么能做到这一点?