我使用裁判来管理scroll
事件
<section ref={(tasks) => {
this.tasks = tasks
}}>
我正在使用scrollIntoView
单击div
来滚动到特定的goToTasks
。
goToTasks = () => {
this.tasks.scrollIntoView({
behavior: 'smooth',
block: 'center',
inline: 'center'
})
}
我要删除scrollIntoView
。当我移到下一页时。我在新页面中获得了相同的滚动位置。
如何删除scrollIntoView
中的已删除componentWillUnmount