我正在尝试通过参考此代码https://codesandbox.io/s/km2n35kq3v使用react-final-form创建向导表单。对于我的用例,我需要在表单字段中使用一些增变函数。本示例说明了如何执行此操作-https://codesandbox.io/s/kx8qv67nk5?from-embed。 当我使用向导表单而不是单页面表单时,我不确定如何在表单步骤中访问mutator函数。
我试图通过修改Wizard.js呈现的<Form>
组件以结合使用这两个示例来传递mutators。但是,我无法在向导表单页面中访问这些更改器。
在Wizard.js
return (
<Form
mutators={{
// potentially other mutators could be merged here
...arrayMutators,
}}
render={({
handleSubmit,
submitting,
values,
pristine,
invalid,
form: {
mutators: {push, pop, remove},
},
}) => {
return (
<form onSubmit={handleSubmit}>
另一个文件index.js
<Wizard
initialValues={{ employed: true, stooge: "larry" }}
onSubmit={onSubmit}
>
<Wizard.Page>
<FieldArray name="customers">
{({ fields }) =>
fields.map((name, index) => (
<div key={name}>
<label>Cust. #{index + 1}</label>
<Field
name={`${name}.firstName`}
component="input"
placeholder="First Name"
/>
<span
onClick={() => fields.remove(index)}
style={{ cursor: "pointer" }}
>
❌
</span>
</div>
))
}
</FieldArray>
</Wizard.Page>
</Wizard>
错误提示-在index.js中未定义删除
答案 0 :(得分:0)
看下面的工作示例:https://codesandbox.io/s/znzlqvzvnx
我所做的更改:
Wizard.js
static Page = ({ children, mutators }) => {
if(typeof children === 'function'){
return children(mutators);
}
return children;
};
...
<form onSubmit={handleSubmit}>
{
// activePage
<activePage.type {...activePage.props} mutators={mutators} />
}
...
index.js(仅前<Wizard.page>
个)
<Wizard.Page>
{
({ upper }) => (
<React.Fragment>
<div>
<label>First Name</label>
<Field
name="firstName"
component="input"
...
</div>
</React.Fragment>
)
}
</Wizard.Page>