我想使用react-final-form构建具有多个提交按钮的表单,其中每个提交按钮在表单中设置不同的值。本质上,我想创建一个在呈现的HTML中看起来像这样的表单:
<form>
Are you over 18 years old?
<button type="submit">Yes</button>
<button type="submit">No</button>
</form>
但是,我无法弄清楚如何使react-final-form将这些不同的提交按钮视为表单中的设置值。我尝试结合组件状态,<input type="hidden">
和onClick
处理程序,如下所示:
class FormWithMultipleSubmits extends React.Component {
state = {
value: undefined
};
setValue = value => this.setState({ value: value });
render() {
return (
<Form>
Are you over 18 years old?
<Field
name="adult"
component="input"
type="hidden"
value={this.state.value}
/>
<button type="submit" onClick={() => this.setValue(true)}>
Yes
</button>
<button type="submit" onClick={() => this.setValue(false)}>
No
</button>
</Form>
);
}
}
但是,这似乎不起作用-可能是因为the value
property on the <Field>
component is only used for checkboxes and radio buttons。
有人可以给我一些正确的方向,以解决问题吗?