React使用定时器interval
2019-11-12 本文已影响0人
章鱼要回家
定义全局变量timer。
timer = null;
// 组件加载完毕 启动定时器
componentDidMount(){
setTimeout(this.iTimer,0);
}
// 组件清除时清除定时器
componentWillUnmount(){
clearInterval(this.timer);
}
// 定时器
iTimer = () => {
this.timer = setInterval(() => {
this.handlereset;
}, 1000);
}