时间:2019-04-30 来源:小程序工厂
onload里面
this. tickers = []
然后每创建一个timer就push进去一个
this.tickers.push(setInterval(func, 1000)
onUnload里面
this.tickers.forearch(t => {
if(t){
clearInterval(t)
}
})
在 onHide 和 onUnload 里边清除
onUnload:function(){
//TODO:clearTimeout
}