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.

68 lines
1.0 KiB

---
order: 2
title:
zh-CN: 可以自定义显示
en-US: Custom trigger
---
9 years ago
## zh-CN
9 years ago
切换按钮和结果分开。
## en-US
Separate trigger button and result.
```jsx
9 years ago
import { Cascader } from 'antd';
const options = [
{
value: 'zhejiang',
label: 'Zhejiang',
children: [
{
value: 'hangzhou',
label: 'Hangzhou',
},
],
},
{
value: 'jiangsu',
label: 'Jiangsu',
children: [
{
value: 'nanjing',
label: 'Nanjing',
},
],
},
];
9 years ago
class CitySwitcher extends React.Component {
state = {
text: 'Unselect',
};
onChange = (value, selectedOptions) => {
9 years ago
this.setState({
text: selectedOptions.map(o => o.label).join(', '),
});
};
9 years ago
render() {
return (
<span>
{this.state.text}
&nbsp;
<Cascader options={options} onChange={this.onChange}>
<a href="#">Change city</a>
9 years ago
</Cascader>
</span>
);
}
}
9 years ago
ReactDOM.render(<CitySwitcher />, mountNode);
```