自定义组件中不能使用canvas 画图么
如题, 在自定义的一个Component wxml文件中添加了个canvas
< view class = 'container' > < canvas canvas-id = 'custom-canvas' style = "border: 1px solid;" ></ canvas > </ view > |
节点, 在js 的ready 函数中执行下面代码,
const ctx = wx.createCanvasContext( 'custom-canvas' ) ctx.setFillStyle( 'red' ) ctx.fillRect(10, 10, 150, 75)
|
但是同样在page 下定义相同布局, 在onLoad下执行相同代码, 会显示出canvas