微信小程序新增了一个canvas页面,多次进入返回,导致微信小程序出现很明显的卡顿问题。
onUnload() {
clearInterval(this.myTime);
this.data.couponList.map((item, index) => {
wx.drawCanvas({
canvasId: "bgCanvas" + item.couponId,
actions: [],
reserve: false
})
wx.drawCanvas({
canvasId: "runCanvas" + item.couponId,
actions: [],
reserve: false
})
})
},
在退出页面时,清除了定时器和画布,还是会卡顿,还有其他优化的方法可以改善么
微信小程序开发问题解答
本文网址:http://www.91bianli.com/weixinxiaochengxu/39833.html