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

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

作者: 绿啊绿啊绿刺猬 | 来源:发表于2019-02-01 11:11 被阅读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()
          }
        })
  },

相关文章

网友评论

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

      本文链接:https://www.haomeiwen.com/subject/hkorsqtx.html