美文网首页
小程序绘制多张网络图片

小程序绘制多张网络图片

作者: 梦里梦不到的梦_b5c8 | 来源:发表于2018-12-14 20:28 被阅读0次

downfile:function(url){

  return new Promise(function(resolve,reject){

    wx.downloadFile({

      url:url,

      success:function(res){

        resolve(res.tempFilePath)

      }

    })

  })

var promise1 = that.downfile(“网络图片”);

    Promise.all([promise1]).then(res => {

      ctx.drawImage(res[0], 0, 0, 375,603);

  })

相关文章

网友评论

      本文标题:小程序绘制多张网络图片

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