2016-03-31 09:40:55 +08:00
|
|
|
---
|
2018-05-21 17:07:39 +08:00
|
|
|
order: 7
|
2017-02-20 21:54:23 +08:00
|
|
|
title:
|
2016-07-10 08:55:43 +08:00
|
|
|
zh-CN: 联动
|
|
|
|
en-US: coordinate
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-08-06 12:06:05 +08:00
|
|
|
|
2016-07-10 08:55:43 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-08-06 12:06:05 +08:00
|
|
|
省市联动是典型的例子。
|
|
|
|
|
2016-08-25 10:52:51 +08:00
|
|
|
推荐使用 [Cascader](/components/cascader/) 组件。
|
2016-03-31 09:40:55 +08:00
|
|
|
|
2016-07-10 08:55:43 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Coordinating the selection of provinces and cities is a common use case and demonstrates how selection can be coordinated.
|
|
|
|
|
|
|
|
Using the [Cascader](/components/cascader) component is strongly recommended instead as it is more flexible and capable.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Select } from 'antd';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2019-05-27 21:32:45 +08:00
|
|
|
const { Option } = Select;
|
2016-09-12 10:10:27 +08:00
|
|
|
const provinceData = ['Zhejiang', 'Jiangsu'];
|
2015-10-28 20:55:49 +08:00
|
|
|
const cityData = {
|
2016-09-12 10:10:27 +08:00
|
|
|
Zhejiang: ['Hangzhou', 'Ningbo', 'Wenzhou'],
|
|
|
|
Jiangsu: ['Nanjing', 'Suzhou', 'Zhenjiang'],
|
2015-08-06 12:06:05 +08:00
|
|
|
};
|
|
|
|
|
2020-11-13 09:33:57 +08:00
|
|
|
const App = () => {
|
|
|
|
const [cities, setCities] = React.useState(cityData[provinceData[0]]);
|
|
|
|
const [secondCity, setSecondCity] = React.useState(cityData[provinceData[0]][0]);
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2020-11-13 09:33:57 +08:00
|
|
|
const handleProvinceChange = value => {
|
|
|
|
setCities(cityData[value]);
|
|
|
|
setSecondCity(cityData[value][0]);
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2020-11-13 09:33:57 +08:00
|
|
|
const onSecondCityChange = value => {
|
|
|
|
setSecondCity(value);
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2020-11-13 09:33:57 +08:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Select defaultValue={provinceData[0]} style={{ width: 120 }} onChange={handleProvinceChange}>
|
|
|
|
{provinceData.map(province => (
|
|
|
|
<Option key={province}>{province}</Option>
|
|
|
|
))}
|
|
|
|
</Select>
|
|
|
|
<Select style={{ width: 120 }} value={secondCity} onChange={onSecondCityChange}>
|
|
|
|
{cities.map(city => (
|
|
|
|
<Option key={city}>{city}</Option>
|
|
|
|
))}
|
|
|
|
</Select>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
2017-02-20 21:54:23 +08:00
|
|
|
|
2022-04-15 16:20:56 +08:00
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|