ant-design/components/cascader/demo/change-on-select.md

69 lines
1.0 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 5
title:
zh-CN: 选择即改变
en-US: Change on select
2016-03-31 09:40:55 +08:00
---
## zh-CN
这种交互允许只选中父级选项。
## en-US
Allow only select parent options.
```tsx
import { Cascader } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
interface Option {
value: string;
label: string;
children?: Option[];
}
const options: Option[] = [
2019-05-07 14:57:32 +08:00
{
value: 'zhejiang',
label: 'Zhejiang',
children: [
{
value: 'hangzhou',
label: 'Hanzhou',
children: [
{
value: 'xihu',
label: 'West Lake',
},
],
},
],
},
{
value: 'jiangsu',
label: 'Jiangsu',
children: [
{
value: 'nanjing',
label: 'Nanjing',
children: [
{
value: 'zhonghuamen',
label: 'Zhong Hua Men',
},
],
},
],
},
];
const onChange = (value: string[]) => {
console.log(value);
};
const App: React.FC = () => <Cascader options={options} onChange={onChange} changeOnSelect />;
export default App;
2019-05-07 14:57:32 +08:00
```