一:子组件不更新问题 // 点击事件 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 }) }