How to use componentWillUnmount to remove setInterval in React.js(如何使用ComponentWillUnmount删除React.js中的setInterval)
本文介绍了如何使用ComponentWillUnmount删除React.js中的setInterval的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有两个间隔在主页中运行,当我移动到其他页面时,我收到内存泄漏错误,我知道我应该使用ComponentWillUnmount,以便该间隔在其他页面停止运行,但我不知道如何实现这一点。有人能帮帮忙吗? componentDidMount() {
this.widthSlider();
this.startAnimate();
const wow = new WOW();
wow.init();
}
startAnimate = () => {
const arr = [
"One",
"Two",
"Three",
"Four",
"Five",
"Six",
"Seven",
"Eight",
"Nine"
];
let counter = 1;
setInterval(() => {
if (counter === 9) {
counter = 0;
this.setState(defaultState());
} else {
const state = this.state;
state[
`animateLeft${arr[counter]}`
] = `animated fadeInLeftBig delay-${arr[counter].toLowerCase()}`;
state[
`animateRight${arr[counter]}`
] = `animated fadeInRightBig delay-${arr[counter].toLowerCase()}`;
this.setState(state);
}
counter++;
}, 7000);
};
widthSlider = () => {
setInterval(() => {
const slide = this.state.width + 100;
this.state.width === 800
? this.setState({
width: 0
})
: this.setState({
width: slide
});
}, 7000);
};
componentWillUnmount(){
//clear Interval here
}
推荐答案
基本上,您需要的是在componentWillUnmount
中使用clearInterval函数。
为了使用它,您需要保存您的间隔ID,它主要在componentDidMount()
或constructor()
constructor() {
super();
// references to
this.sliderInterval = null;
this.animateInterval = null;
}
componentDidMount() {
this.widthSlider();
this.startAnimate();
const wow = new WOW();
wow.init();
}
startAnimate = () => {
const arr = [
"One",
"Two",
"Three",
"Four",
"Five",
"Six",
"Seven",
"Eight",
"Nine"
];
let counter = 1;
//save the interval Id
this.animateInterval = setInterval(() => {
if (counter === 9) {
counter = 0;
this.setState(defaultState());
} else {
const state = this.state;
state[
`animateLeft${arr[counter]}`
] = `animated fadeInLeftBig delay-${arr[counter].toLowerCase()}`;
state[
`animateRight${arr[counter]}`
] = `animated fadeInRightBig delay-${arr[counter].toLowerCase()}`;
this.setState(state);
}
counter++;
}, 7000);
};
widthSlider = () => {
//save the interval Id
this.sliderInterval = setInterval(() => {
const slide = this.state.width + 100;
this.state.width === 800
? this.setState({
width: 0
})
: this.setState({
width: slide
});
}, 7000);
};
componentWillUnmount(){
// clearing the intervals
if(this.sliderInterval) clearInterval(this.sliderInterval)
if(this.animateInterval) clearInterval(this.animateInterval)
}
这篇关于如何使用ComponentWillUnmount删除React.js中的setInterval的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何使用ComponentWillUnmount删除React.js中的setInterval
基础教程推荐
猜你喜欢
- 在for循环中使用setTimeout 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 动态更新多个选择框 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01