You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.4 KiB
117 lines
3.4 KiB
4 years ago
|
---
|
||
|
order: 4.2
|
||
|
title:
|
||
|
zh-CN: 复杂的动态增减表单项
|
||
|
en-US: Complex Dynamic Form Item
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
这个例子演示了一个表单中包含多个表单控件的情况。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
This example demonstrates the case that a form contains multiple form controls.
|
||
|
|
||
|
```jsx
|
||
|
import { Form, Input, Button, Space, Select } from 'antd';
|
||
|
import { MinusCircleOutlined, PlusOutlined } from '@ant-design/icons';
|
||
|
|
||
|
const areas = [
|
||
|
{ label: 'Beijing', value: 'Beijing' },
|
||
|
{ label: 'Shanghai', value: 'Shanghai' },
|
||
|
];
|
||
|
|
||
|
const sights = {
|
||
|
Beijing: ['Tiananmen', 'Great Wall'],
|
||
|
Shanghai: ['Oriental Pearl', 'The Bund'],
|
||
|
};
|
||
|
|
||
|
const Demo = () => {
|
||
|
const [form] = Form.useForm();
|
||
|
|
||
|
const onFinish = values => {
|
||
|
console.log('Received values of form:', values);
|
||
|
};
|
||
|
|
||
|
const handleChange = () => {
|
||
|
form.setFieldsValue({ sights: [] });
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<Form form={form} name="dynamic_form_nest_item" onFinish={onFinish} autoComplete="off">
|
||
|
<Form.Item name="area" label="Area" rules={[{ required: true, message: 'Missing area' }]}>
|
||
|
<Select options={areas} onChange={handleChange} />
|
||
|
</Form.Item>
|
||
|
<Form.List name="sights">
|
||
|
{(fields, { add, remove }) => {
|
||
|
return (
|
||
|
<>
|
||
|
{fields.map(field => (
|
||
|
<Space key={field.key} align="start">
|
||
|
<Form.Item
|
||
|
noStyle
|
||
|
shouldUpdate={(prevValues, curValues) =>
|
||
|
prevValues.area !== curValues.area || prevValues.sights !== curValues.sights
|
||
|
}
|
||
|
>
|
||
|
{() => (
|
||
|
<Form.Item
|
||
|
{...field}
|
||
|
label="Sight"
|
||
|
name={[field.name, 'sight']}
|
||
|
fieldKey={[field.fieldKey, 'sight']}
|
||
|
rules={[{ required: true, message: 'Missing sight' }]}
|
||
|
>
|
||
|
<Select disabled={!form.getFieldValue('area')} style={{ width: 130 }}>
|
||
|
{(sights[form.getFieldValue('area')] || []).map(item => (
|
||
|
<Select.Option key={item} value={item}>
|
||
|
{item}
|
||
|
</Select.Option>
|
||
|
))}
|
||
|
</Select>
|
||
|
</Form.Item>
|
||
|
)}
|
||
|
</Form.Item>
|
||
|
<Form.Item
|
||
|
{...field}
|
||
|
label="Price"
|
||
|
name={[field.name, 'price']}
|
||
|
fieldKey={[field.fieldKey, 'price']}
|
||
|
rules={[{ required: true, message: 'Missing price' }]}
|
||
|
>
|
||
|
<Input />
|
||
|
</Form.Item>
|
||
|
|
||
|
<MinusCircleOutlined onClick={() => remove(field.name)} />
|
||
|
</Space>
|
||
|
))}
|
||
|
|
||
|
<Form.Item>
|
||
|
<Button
|
||
|
type="dashed"
|
||
|
onClick={() => {
|
||
|
add();
|
||
|
}}
|
||
|
block
|
||
|
>
|
||
|
<PlusOutlined /> Add sights
|
||
|
</Button>
|
||
|
</Form.Item>
|
||
|
</>
|
||
|
);
|
||
|
}}
|
||
|
</Form.List>
|
||
|
|
||
|
<Form.Item>
|
||
|
<Button type="primary" htmlType="submit">
|
||
|
Submit
|
||
|
</Button>
|
||
|
</Form.Item>
|
||
|
</Form>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ReactDOM.render(<Demo />, mountNode);
|
||
|
```
|