0

我有在 ListView 中呈现项目列表的子组件。ListView 的数据来自通过父 mapStateToProps 传递的 Redux 存储对象。子对象具有在按下时将删除项目的按钮。该按钮会触发适当的 redux 调度操作,并且状态会正确更新,但子组件不会更新。通过断点和控制台语句,我已经验证了子 componentShouldUpdate 和子 componentWillReceiveProps 在 redux 状态变化时被触发,但在状态改变后子渲染方法不会触发。

家长

 <PendingActionsList
        proposedStatusChanges={this.props.proposedStatusChanges}
        certifications={this.props.certifications}
        driverProfile={this.props.driverProfile}
        acceptProposedStatusChange={this.props.acceptProposedStatusChange}
        rejectProposedStatusChange={this.props.rejectProposedStatusChange}
        navigator={this.props.navigator}
      />

孩子

    componentWillMount(){
    this.setState({
      proposedChanges:this.props.proposedStatusChanges
    });

  }
  shouldComponentUpdate(nextProps){
//fires when expected and returns expected value
    return nextProps.proposedStatusChanges.length != nextProps.proposedStatusChanges.length;
  }
  componentWillReceiveProps(nextProps){
    //fires when props change as expected
    console.log({'will receive props': nextProps});
    this.setState({
      proposedChanges:nextProps.proposedStatusChanges
    });
  }

 render(){
//only fires at intial render
const dataSource = this.ds.cloneWithRows(this.state.proposedChanges)
    return(
      <View style={styles.container}>
       <Text>Pending Actions </Text>
        <ListView
          dataSource={dataSource}
          renderRow={(rowData) => this.renderRow(rowData)}
          renderSeparator={(sectionId,rowId)=><View key={`${sectionId}-${rowId}`} style={{height:1,backgroundColor:'#D1D1D1'}}/>}
          />
      </View>
    );

我也尝试过没有状态字段,这是我期望的工作,但结果相同。

4

1 回答 1

1

那是因为您一直在检查同一对象中的不等式:

//Replace this:
return nextProps.proposedStatusChanges.length != nextProps.proposedStatusChanges.length;
//With this:
return nextProps.proposedStatusChanges.length != this.props.proposedStatusChanges.length;
于 2016-07-20T08:45:57.353 回答