|
|
|
---
|
|
|
|
order: 1
|
|
|
|
title:
|
|
|
|
zh-CN: 受控操作示例
|
|
|
|
en-US: Controlled Tree
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
受控操作示例
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Controlled mode lets parent nodes reflect the status of child nodes more intelligently.
|
|
|
|
|
|
|
|
```tsx
|
|
|
|
import React, { useState } from 'react';
|
|
|
|
import { Tree } from 'antd';
|
|
|
|
|
|
|
|
const treeData = [
|
|
|
|
{
|
|
|
|
title: '0-0',
|
|
|
|
key: '0-0',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
title: '0-0-0',
|
|
|
|
key: '0-0-0',
|
|
|
|
children: [
|
|
|
|
{ title: '0-0-0-0', key: '0-0-0-0' },
|
|
|
|
{ title: '0-0-0-1', key: '0-0-0-1' },
|
|
|
|
{ title: '0-0-0-2', key: '0-0-0-2' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '0-0-1',
|
|
|
|
key: '0-0-1',
|
|
|
|
children: [
|
|
|
|
{ title: '0-0-1-0', key: '0-0-1-0' },
|
|
|
|
{ title: '0-0-1-1', key: '0-0-1-1' },
|
|
|
|
{ title: '0-0-1-2', key: '0-0-1-2' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '0-0-2',
|
|
|
|
key: '0-0-2',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '0-1',
|
|
|
|
key: '0-1',
|
|
|
|
children: [
|
|
|
|
{ title: '0-1-0-0', key: '0-1-0-0' },
|
|
|
|
{ title: '0-1-0-1', key: '0-1-0-1' },
|
|
|
|
{ title: '0-1-0-2', key: '0-1-0-2' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '0-2',
|
|
|
|
key: '0-2',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const Demo = () => {
|
|
|
|
const [expandedKeys, setExpandedKeys] = useState<string[]>(['0-0-0', '0-0-1']);
|
|
|
|
const [checkedKeys, setCheckedKeys] = useState<string[]>(['0-0-0']);
|
|
|
|
const [selectedKeys, setSelectedKeys] = useState<string[]>([]);
|
|
|
|
const [autoExpandParent, setAutoExpandParent] = useState<boolean>(true);
|
|
|
|
|
|
|
|
const onExpand = expandedKeys => {
|
|
|
|
console.log('onExpand', expandedKeys);
|
|
|
|
// if not set autoExpandParent to false, if children expanded, parent can not collapse.
|
|
|
|
// or, you can remove all expanded children keys.
|
|
|
|
setExpandedKeys(expandedKeys);
|
|
|
|
setAutoExpandParent(false);
|
|
|
|
};
|
|
|
|
|
|
|
|
const onCheck = checkedKeys => {
|
|
|
|
console.log('onCheck', checkedKeys);
|
|
|
|
setCheckedKeys(checkedKeys);
|
|
|
|
};
|
|
|
|
|
|
|
|
const onSelect = (selectedKeys, info) => {
|
|
|
|
console.log('onSelect', info);
|
|
|
|
setSelectedKeys(selectedKeys);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Tree
|
|
|
|
checkable
|
|
|
|
onExpand={onExpand}
|
|
|
|
expandedKeys={expandedKeys}
|
|
|
|
autoExpandParent={autoExpandParent}
|
|
|
|
onCheck={onCheck}
|
|
|
|
checkedKeys={checkedKeys}
|
|
|
|
onSelect={onSelect}
|
|
|
|
selectedKeys={selectedKeys}
|
|
|
|
treeData={treeData}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
ReactDOM.render(<Demo />, mountNode);
|
|
|
|
```
|