|
|
|
---
|
|
|
|
order: 11
|
|
|
|
title:
|
|
|
|
zh-CN: 表单联动
|
|
|
|
en-US: Coordinated Controls
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
使用 `setFieldsValue` 来动态设置其他控件的值。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Use `setFieldsValue` to set other control's value programmaticly.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Form, Select, Input, Button } from 'antd';
|
|
|
|
|
|
|
|
const { Option } = Select;
|
|
|
|
|
|
|
|
class App extends React.Component {
|
|
|
|
handleSubmit = e => {
|
|
|
|
e.preventDefault();
|
|
|
|
this.props.form.validateFields((err, values) => {
|
|
|
|
if (!err) {
|
|
|
|
console.log('Received values of form: ', values);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
handleSelectChange = value => {
|
|
|
|
console.log(value);
|
|
|
|
this.props.form.setFieldsValue({
|
|
|
|
note: `Hi, ${value === 'male' ? 'man' : 'lady'}!`,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { getFieldDecorator } = this.props.form;
|
|
|
|
return (
|
|
|
|
<Form labelCol={{ span: 5 }} wrapperCol={{ span: 12 }} onSubmit={this.handleSubmit}>
|
|
|
|
<Form.Item label="Note">
|
|
|
|
{getFieldDecorator('note', {
|
|
|
|
rules: [{ required: true, message: 'Please input your note!' }],
|
|
|
|
})(<Input />)}
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item label="Gender">
|
|
|
|
{getFieldDecorator('gender', {
|
|
|
|
rules: [{ required: true, message: 'Please select your gender!' }],
|
|
|
|
})(
|
|
|
|
<Select
|
|
|
|
placeholder="Select a option and change input text above"
|
|
|
|
onChange={this.handleSelectChange}
|
|
|
|
>
|
|
|
|
<Option value="male">male</Option>
|
|
|
|
<Option value="female">female</Option>
|
|
|
|
</Select>,
|
|
|
|
)}
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item wrapperCol={{ span: 12, offset: 5 }}>
|
|
|
|
<Button type="primary" htmlType="submit">
|
|
|
|
Submit
|
|
|
|
</Button>
|
|
|
|
</Form.Item>
|
|
|
|
</Form>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const WrappedApp = Form.create({ name: 'coordinated' })(App);
|
|
|
|
|
|
|
|
ReactDOM.render(<WrappedApp />, mountNode);
|
|
|
|
```
|