微信小程序生成canvas海报时网络图片不显示的问题

2019-02-01  本文已影响94人  绿啊绿啊绿刺猬

在开发者工具上不会有问题,但是在真机网络图片不显示,比如头像这些。
解决办法:把网络图片改成临时路径。

// 把网络图片改成临时路径
  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()
          }
        })
  },
上一篇 下一篇

猜你喜欢

热点阅读