非常着急!!
const query = wx.createSelectorQuery().in(this)
query.select('#batterycanvas')
.fields({
node: true,
size: true
})
.exec((res) => {
let c = res[0]
const canvas = c.node
const ctx = canvas.getContext('2d')
const width = c.width
const height = c.height
})
反复调用 上面代码会造成内存泄露吗?
还是getContext('2d')是单例?
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。