小程序
小游戏
企业微信
微信支付
扫描小程序码分享
已配置业务域名
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
取消勾选后再在开发工具调试下
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
谢谢!
这个确实答案
在真机上不显示 打开开发调试就可以显示 ,在微信开发者工具上也能显示
开发者工具可以,真机就不绘制就是白板
代码贴下呢
var ctx = wx.createCanvasContext('shareGoodImage');
let wW = that.data.windowWidth;
let wH = that.data.windowHeight;
ctx.setFillStyle('white');
ctx.fillRect(0, 0, wW, wH);
wx.getImageInfo({
src: newimage,
success: function (res) {
console.log("codeUrl1--" + res.path);
ctx.drawImage(res.path, 0, 0, wW * 1, wH * 0.6);
src:codeUrl,
success: function (res1) {
console.log("path4--"+res1.path)
ctx.drawImage(res1.path, wW - 110, wH - wH * 0.35, 100, 100);
ctx.setFontSize(12);
ctx.fillStyle = '#999';
ctx.fillText("长按识别二维码", wW - 105, wH - wH * 0.35+120);
ctx.setFontSize(16);
ctx.fillStyle = '#ff0000';
ctx.fillText("¥" + sellPrice, 10, wH - wH * 0.32);
ctx.setFontSize(14);
ctx.fillStyle = '#000';
that.drawText(ctx, goodsName, 10, wH - wH * 0.26, 10, wW * 0.5);
ctx.draw();
wx.hideLoading({});
},
fail: function (res1) {
console.log("path1--" + JSON.stringify(res1));
}
})
fail: function (res) {
newimage 和 codeUrl 的地址 都加了downloadFile白名单的?fail分支都打印都加上,看有打印啥吗
加了,打开调试打印出来的地址都没有错的,但是正式版还是报了这个getImageInfo方法错误
具体报啥错啊?
借楼,卢大佬,有个问题请教你。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
取消勾选后再在开发工具调试下
谢谢!
这个确实答案
在真机上不显示 打开开发调试就可以显示 ,在微信开发者工具上也能显示
开发者工具可以,真机就不绘制就是白板
代码贴下呢
var ctx = wx.createCanvasContext('shareGoodImage');
let wW = that.data.windowWidth;
let wH = that.data.windowHeight;
ctx.setFillStyle('white');
ctx.fillRect(0, 0, wW, wH);
wx.getImageInfo({
src: newimage,
success: function (res) {
console.log("codeUrl1--" + res.path);
ctx.drawImage(res.path, 0, 0, wW * 1, wH * 0.6);
wx.getImageInfo({
src:codeUrl,
success: function (res1) {
console.log("path4--"+res1.path)
ctx.drawImage(res1.path, wW - 110, wH - wH * 0.35, 100, 100);
ctx.setFontSize(12);
ctx.fillStyle = '#999';
ctx.fillText("长按识别二维码", wW - 105, wH - wH * 0.35+120);
ctx.setFontSize(16);
ctx.fillStyle = '#ff0000';
ctx.fillText("¥" + sellPrice, 10, wH - wH * 0.32);
ctx.setFontSize(14);
ctx.fillStyle = '#000';
that.drawText(ctx, goodsName, 10, wH - wH * 0.26, 10, wW * 0.5);
ctx.draw();
wx.hideLoading({});
},
fail: function (res1) {
console.log("path1--" + JSON.stringify(res1));
}
})
},
fail: function (res) {
}
})
newimage 和 codeUrl 的地址 都加了downloadFile白名单的?fail分支都打印都加上,看有打印啥吗
加了,打开调试打印出来的地址都没有错的,但是正式版还是报了这个getImageInfo方法错误
具体报啥错啊?
借楼,卢大佬,有个问题请教你。