关于antd复选框点击不了的问题,求解

点击复选框,控制台报“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>
    )
 }

图片描述

阅读 6.5k
2 个回答
// checkedKeys初始化为空数组,发现下面这样写就不出毛病
  checkedKeys={checkedKeys.length==0?[]:checkedKeys}

this.state.getCheckedKeysundefined值,或者这个值就为undefined.
试试checkedKeys={this.state.getCheckedKeys || []}

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题