7

我正在尝试使用 setInterval 卸载组件。

这是基于这里的答案:

零件:

class ImageSlider extends React.Component {
  constructor(props) {
    super(props);
    this.state = { activeMediaIndex: 0 };
  }

  componentDidMount() {
    setInterval(this.changeActiveMedia.bind(this), 5000);
  }

  changeActiveMedia() {
    const mediaListLength = this.props.mediaList.length;
    let nextMediaIndex = this.state.activeMediaIndex + 1;

    if(nextMediaIndex >= mediaListLength) {
      nextMediaIndex = 0;
    }

    this.setState({ activeMediaIndex:nextMediaIndex });
  }

  renderSlideshow(){
    const singlePhoto = this.props.mediaList[this.state.activeMediaIndex];
      return(
        <div>
          <img src={singlePhoto.url} />
        </div>
      );
    }

  render(){   
    return(
      <div>
          {this.renderSlideshow()}
      </div>
    )
  }
}

现在,当我转到另一个页面时,我收到此错误:

Can only update a mounted or mounting component. This usually means you called setState() on an unmounted component

所以我添加了这样的东西:

   componentWillUnmount(){
    clearInterval(this.interval);
  }

我也试过:

   componentWillUnmount(){
    clearInterval(this.changeActiveMedia);
  }

但我仍然每 5 秒收到一次上述错误。有没有清除间隔的正确方法?

4

1 回答 1

18

setInterval返回一个可以在 in 中使用的 in 区间 Id clearInterval

有关 setInterval 的更多信息

像这样的东西应该工作:

this.myInterval = setInterval(this.changeActiveMedia.bind(this), 5000)

然后在 componentWillUnmount 中:

clearInterval(this.myInterval);

于 2017-03-30T02:34:48.037 回答