点击复选框,控制台报“Uncaught TypeError: Cannot set property 'checked' of undefined”,不知哪里写错了,如果我不遍历,写死的话,就可以点击
this.state.getCheckedKeys // 这个getCheckedKeys初始化默认为空数组的;
onCheck = (checkedKeys) => {
this.setState({ getCheckedKeys: checkedKeys });
}
render() {
const queryGroup = this.state.queryGroup || [];
return(
<Tree
checkable
onCheck={this.onCheck}
checkedKeys={this.state.getCheckedKeys}
>
{
queryGroup.map(item =>
<TreeNode title={item.name} key={item.id} />
)
}
</Tree>
)
}