React antd 学习随笔

Table

控制是否展开,expandedRowKeys数组存放对应展开行的数据key

expandedRowKeys = {this.state.expandedRowKeys}

控制是否单独单元格放置展开图标

expandIconAsCell = {false}

number设置展开图标所在的单元格索引,取一个不存在的索引可达到去掉预设图标的效果

expandIconColumnIndex = {-1}

展开行内为Form表单,双向绑定导致input焦点丢失

具体原因尚未清楚,表现疑似展开行内input双向绑定触发了父组件Table的重新渲染,进而触发展开行内重新渲染,导致焦点丢失,无法持续输入。
应急方案:父组件使用生命周期控制渲染

shouldComponentUpdate(nextProps, nextState) {
        if (JSON.stringify(nextState) == JSON.stringify(this.state)){
            return false;
        }
        return true;
}

缺点:部分props和state的复杂数据类型的变化无法被shouldComponentUpdate捕获,无法正确触发视图变化,因而必须保证清晰掌握父组件以及子组件所有更新可能。比如父组件中存在下面的上传组件,三元运算符结果显示失效


{
        this.state.fileList[record.key] !== undefined ?
                
                 :
        
}


在该上传组件中,通过beforeUpload函数更新state的fileList(Object)并没有触发视图变化。通过在shouldComponentUpdate中输出控制台发现,nextState和this.state的fileList一致为更新后的值,原因未知。为了解决这个问题,我在state中引入了一个Boolean值,用于通过beforeUpload改变它来触发shouldComponentUpdate。

inputNumber

输入非数字时,在失去焦点后onChange获得的value会变成undefined,而不是空字符串或者0

Modal

个人常用例子


                        确定
                ,
                
        ]}
>
        

{this.state.modalContent}

多个modal 显示时可能存在覆盖顺序错误

通过设置modal的zIndex值,将需要的modal层次提高

Form

个人常用例子

checkError = (id) => {
  // Only show error after a field is touched.
  return this.props.form.isFieldTouched(id) && this.props.form.getFieldError(id)
}

...


      论文题目
    
  )}
>
  {getFieldDecorator('title', {
     rules: [{ required: true, message: '标题不能为空!', whitespace: true }],
  })(
    
  )}

你可能感兴趣的:(React antd 学习随笔)