您瞧瞧Canvas那块的API,是给人开发的嘛?复制粘贴你们的实例代码都报错的,例如setFillStyle()这个方法,不打印canvas实例我都不知道是直接fillStyle="red"就行了,关键是用setFillStyle('red')还报错.setFillStyle() is not a function...
const ctx = wx.createCanvasContext('myCanvas')
ctx.setFillStyle('red')
ctx.fillRect(10, 10, 150, 100)
ctx.draw()
ctx.fillRect(50, 50, 150, 100)
ctx.draw(true)
官方代码,draw()报错不存在,createCanvasContext也不起作用了
const ctx = wx.createCanvasContext('myCanvas') ctx.setFillStyle('red') ctx.fillRect(10, 10, 150, 75) ctx.draw()
这也是官方的文档代码,draw()直接报错,看实例已经没有这个方法了