时间:2019-05-03 来源:小程序工厂
让你传回调函数。。不是传函数返回值。。
ctx.draw(false,callback) 对
ctx.draw(false,callback()) 不对
ctx.draw(false,()=>{callback()}) 对
ctx.draw(false, () => {
setTimeout(() => {
that.save_share_img();
}, 2000);
})
//that.save_share_img 这个方法里调用
wx.canvasToTempFilePath