在开发者工具上不会有问题,但是在真机网络图片不显示,比如头像这些。
解决办法:把网络图片改成临时路径。
// 把网络图片改成临时路径
downLoad: function (e) {
var that = this;
//缓存canvas背景图
wx.downloadFile({
url: that.data.bgImgPath,//网络路径
success: function (res3) {
//背景图
that.setData({
bgImgPath: res3.tempFilePath
})
console.log(res3.tempFilePath)
console.log('开始绘制图片')
that.drawImage();//绘图的函数
// 结束加载中提示
wx.hideLoading()
}
})
},
网友评论