问题描述
onload 事件没有触发。请大佬指点是否写法错误
相关代码
// 请把代码文本粘贴到下方(请勿用图片代替代码)
class Demo extends React.Component {
onSelect = (selectedKeys, info) => {
console.log("selected", selectedKeys, info);
};
onCheck = (checkedKeys, info) => {
console.log("onCheck", checkedKeys, info);
};
onLoad = (loadedKeys, info) => {
debugger;
console.log("loadedKeys");
};
render() {
return (
<Tree
checkable
defaultExpandedKeys={["0-0-0", "0-0-1"]}
defaultSelectedKeys={["0-0-0", "0-0-1"]}
defaultCheckedKeys={["0-0-0", "0-0-1"]}
onSelect={this.onSelect}
onCheck={this.onCheck}
onLoad={this.onLoad}
>
<TreeNode title="parent 1" key="0-0">
<TreeNode title="parent 1-0" key="0-0-0" disabled>
<TreeNode title="leaf" key="0-0-0-0" disableCheckbox />
<TreeNode title="leaf" key="0-0-0-1" />
</TreeNode>
<TreeNode title="parent 1-1" key="0-0-1">
<TreeNode
title={<span style={{ color: "#1890ff" }}>sss</span>}
key="0-0-1-0"
/>
</TreeNode>
</TreeNode>
</Tree>
);
}
}
这里的
onLoad
需要配合loadData
异步加载数据才能触发节点加载完毕事件