定义全局变量timer。
timer = null;
// 组件加载完毕 启动定时器
componentDidMount(){
setTimeout(this.iTimer,0);
}
// 组件清除时清除定时器
componentWillUnmount(){
clearInterval(this.timer);
}
// 定时器
iTimer = () => {
this.timer = setInterval(() => {
this.handlereset;
}, 1000);
}