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.

77 lines
1.2 KiB

---
order: 3
title:
zh-CN: 可勾选
en-US: Checkable
---
9 years ago
## zh-CN
使用勾选框实现多选功能。
9 years ago
## en-US
Multiple and checkable.
````jsx
9 years ago
import { TreeSelect } from 'antd';
const SHOW_PARENT = TreeSelect.SHOW_PARENT;
9 years ago
const treeData = [{
title: 'Node1',
value: '0-0',
key: '0-0',
children: [{
title: 'Child Node1',
value: '0-0-0',
key: '0-0-0',
}],
}, {
title: 'Node2',
value: '0-1',
key: '0-1',
children: [{
title: 'Child Node3',
value: '0-1-0',
key: '0-1-0',
}, {
title: 'Child Node4',
value: '0-1-1',
key: '0-1-1',
}, {
title: 'Child Node5',
value: '0-1-2',
key: '0-1-2',
}],
}];
9 years ago
class Demo extends React.Component {
state = {
value: ['0-0-0'],
}
onChange = (value) => {
console.log('onChange ', value);
9 years ago
this.setState({ value });
}
9 years ago
render() {
9 years ago
const tProps = {
treeData,
9 years ago
value: this.state.value,
onChange: this.onChange,
9 years ago
treeCheckable: true,
showCheckedStrategy: SHOW_PARENT,
searchPlaceholder: 'Please select',
style: {
width: 300,
},
9 years ago
};
return <TreeSelect {...tProps} />;
}
}
9 years ago
ReactDOM.render(<Demo />, mountNode);
9 years ago
````