ant-design/components/cascader/demo/basic.md

51 lines
766 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title:
zh-CN: 基本
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-12-29 11:46:13 +08:00
## zh-CN
2015-12-29 18:24:21 +08:00
省市区级联。
2015-12-29 11:46:13 +08:00
## en-US
Cascade selection box for selecting province/city/district.
2015-12-29 11:46:13 +08:00
````jsx
import { Cascader } from 'antd';
const options = [{
value: 'zhejiang',
2016-09-10 18:23:24 +08:00
label: 'Zhejiang',
2015-12-29 11:46:13 +08:00
children: [{
value: 'hangzhou',
2016-09-10 18:23:24 +08:00
label: 'Hangzhou',
2015-12-29 11:46:13 +08:00
children: [{
value: 'xihu',
2016-09-10 18:23:24 +08:00
label: 'West Lake',
2015-12-29 11:46:13 +08:00
}],
}],
}, {
value: 'jiangsu',
2016-09-10 18:23:24 +08:00
label: 'Jiangsu',
2015-12-29 11:46:13 +08:00
children: [{
value: 'nanjing',
2016-09-10 18:23:24 +08:00
label: 'Nanjing',
2015-12-29 11:46:13 +08:00
children: [{
value: 'zhonghuamen',
2016-09-10 18:23:24 +08:00
label: 'Zhong Hua Men',
2015-12-29 11:46:13 +08:00
}],
}],
}];
function onChange(value) {
console.log(value);
}
ReactDOM.render(
2016-09-10 18:23:24 +08:00
<Cascader options={options} onChange={onChange} placeholder="Please select" />
2015-12-29 11:46:13 +08:00
, mountNode);
````