收藏
回答

微信小程序组件中使用 setTimeout 无法清除怎么解决?

在小程序组件使用了setTimeout,并且生命周期销毁都设置了清除,但是使用工具体验评分并未生效,依旧提示setTimeout未回收,有没有解决的???组件应该放在哪里回收?

lifetimes: {
    detached() {
      clearTimeout(this.data.setTimer)
    }
},
pageLifetimes: {
    hide() {
      clearTimeout(this.data.setTimer)
    },
    detached() {
      clearTimeout(this.data.setTimer)
    },
 },
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容