Canvas 2d
touchmove(e){
this.setData({
x: e.touches[0].x,
y: e.touches[0].y
});
cav1.fields({node: true, size: true })
.exec((res)=>{
// Canvas 对象
canvas = res[0].node
// Canvas 绘制上下文
ctx = canvas.getContext('2d')
ctx.fillStyle = this.data.color;
ctx.fillRect(this.data.x, this.data.y, this.data.size, this.data.size);
})
},
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。