如何在componentWillUnmount中删除scrollIntoView

时间:2018-09-09 17:04:55

标签: reactjs scroll ref unmount

我使用裁判来管理scroll事件

 <section ref={(tasks) => {
                this.tasks = tasks
              }}>

我正在使用scrollIntoView单击div来滚动到特定的goToTasks

 goToTasks = () => {
    this.tasks.scrollIntoView({
    behavior: 'smooth',
    block: 'center',
    inline: 'center'
  })
  }

我要删除scrollIntoView。当我移到下一页时。我在新页面中获得了相同的滚动位置。

如何删除scrollIntoView中的已删除componentWillUnmount

0 个答案:

没有答案