previewImage展示虚拟路径图片黑屏
通过点击事件:
previewImage(e){
var that = this;
wx.canvasToTempFilePath({
canvasId: ‘firstCanvas’,
success: res => {
console.log(res.tempFilePath);
wx.previewImage({
current: res.tempFilePath, // 当前显示图片的http链接
urls: [res.tempFilePath,that.data.img], // 需要预览的图片http链接列表
})
},
})
},
将canvas画布内的内容通过canvasToTempFilePath生成图片,然后通过previewImage展示,显示黑屏