- wx.canvasToTempFilePath(不使用context.draw())生成的图片空白?
使用Canvas 2D 接口(需指定 type 属性),在setTimeout函数里面调用 canvasToTempFilePath ,生成的图片是空白的。 setTimeout(function () { wx.canvasToTempFilePath({ canvas:cvs, fileType: 'jpg', quality: 1, destWidth: width, destHeight: height, success: function (ress) { console.log("生成的图片") console.log(ress) wx.hideLoading(); typeof callback == "function" && callback(ress); }, fail:function(ress){ console.log(ress) wx.hideLoading(); } },cvs) },1000)
2023-08-25 - android 微信登录,红米Note11 无法选择微信分身?
android 微信登录,已开启微信分身,在小米 红米Note11上面,不能弹出 选择微信的弹窗,微信登录直接到主微信上面了,在其它手机上可以跳出选择微信的页面。
2023-04-07