drawImage 用官方原代码怎么都没显示图片呢,怎么回事
const ctx = wx.createCanvasContext(‘wwww’)
wx.chooseImage({
success: function (res) {
console.log(res.tempFilePaths[0])
ctx.drawImage(res.tempFilePaths[0], 0, 0)
ctx.draw()
}
})
<canvas canvas-id=“wwww” style=‘width:750rpx;height:1000rpx;’>
</canvas>
不显示图片,其他的操作可以, 就在开发者工具上