繁体   English   中英

在React中使用SetInterval卸载组件

[英]Unmounting a Component with a SetInterval in React

我正在尝试使用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秒钟收到上述错误。 有没有正确的方法来清除间隔?

setInterval返回可在clearInterval使用的in interval Id。

有关setInterval的更多信息

这样的事情应该有效:

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

然后在componentWillUnmount中:

clearInterval(this.myInterval);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM