ant-design/components/select/demo/coordinate.md

74 lines
1.6 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2018-05-21 17:07:39 +08:00
order: 7
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
省市联动是典型的例子。
推荐使用 [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.
2017-02-13 10:55:53 +08:00
````jsx
import { Select } from 'antd';
2018-06-27 15:55:04 +08:00
const Option = Select.Option;
const provinceData = ['Zhejiang', 'Jiangsu'];
const cityData = {
Zhejiang: ['Hangzhou', 'Ningbo', 'Wenzhou'],
Jiangsu: ['Nanjing', 'Suzhou', 'Zhenjiang'],
2015-08-06 12:06:05 +08:00
};
class App extends React.Component {
state = {
cities: cityData[provinceData[0]],
secondCity: cityData[provinceData[0]][0],
}
2018-06-27 15:55:04 +08:00
handleProvinceChange = (value) => {
2015-08-06 12:06:05 +08:00
this.setState({
2015-08-20 17:27:40 +08:00
cities: cityData[value],
2016-05-11 09:32:33 +08:00
secondCity: cityData[value][0],
2015-08-20 17:27:40 +08:00
});
}
2018-06-27 15:55:04 +08:00
onSecondCityChange = (value) => {
2015-08-20 17:27:40 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
secondCity: value,
2015-08-06 12:06:05 +08:00
});
}
2018-06-27 15:55:04 +08:00
2015-08-06 12:06:05 +08:00
render() {
2018-10-06 18:58:25 +08:00
const { cities } = this.state;
return (
<div>
2018-10-06 18:58:25 +08:00
<Select
defaultValue={provinceData[0]}
style={{ width: 120 }}
onChange={this.handleProvinceChange}
>
{provinceData.map(province => <Option key={province}>{province}</Option>)}
</Select>
2018-10-06 18:58:25 +08:00
<Select
style={{ width: 120 }}
value={this.state.secondCity}
onChange={this.onSecondCityChange}
>
{cities.map(city => <Option key={city}>{city}</Option>)}
</Select>
</div>
);
}
}
ReactDOM.render(<App />, mountNode);
2015-08-06 12:06:05 +08:00
````