当前位置 : 主页 > 网页制作 > React >

React 日常遇到的坑

来源:互联网 收集:自由互联 发布时间:2021-06-15
一:子组件不更新问题 // 点击事件 handleClick(ev,index){ // 提交事件 this .props.onHandleButtonClick(index) // 更新子组件渲染 :this.props为父组件更新的数据 this .componentWillReceiveProps( this .props)} // 更

一:子组件不更新问题

//点击事件
handleClick(ev,index){
    //提交事件
   this.props.onHandleButtonClick(index)
   //更新子组件渲染 :this.props为父组件更新的数据
  this.componentWillReceiveProps(this.props)
}
//更新操作
componentWillReceiveProps =(nextProps)=>{
    this.setState({
        demandType: nextProps.demandType
    }) 
}
网友评论