- 场景值1107?
小程序里授权订阅消息,然后服务端发消息给微信,微信收到了服务通知,点击(’进入小程序查看‘按钮)进入发现是1014(小程序模板消息)。 我用订阅下发的消息不能获取1107吗?还是说我的方法有问题,怎么才能实现从1107进入小程序
2020-09-11 - subscribeMessage.send接口返回值?
返回值是这个 {"errcode":47001,"errmsg":"data format error rid: 5f5a0c2d-5cbc5446-35b6f7f8"} 我看文档里没有对应的解释,来社区问问,这个data是指整个请求参数有问题,还是指请求参数里的key为data的参数有问题? 我有试着改`touser`为空,但是还是收到这个提示
2020-09-10 - 2d的canvas,wx.canvasToTempFilePath报错drawImage
同一段代码,在三种情况下的报错 模拟器调试:代码中没使用drawImage,但是调用wx.canvasToTempFilePath就报错, Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The provided value is not of type '(CSSImageValue or HTMLImageElement or SVGImageElement or HTMLVideoElement or HTMLCanvasElement or ImageBitmap or OffscreenCanvas)' 预览:canvasToTempFilePath:fail invalid viewId 真机调试:Unhandled promise rejection TypeError: r.Canvas is not a constructor wxml: canvas type="2d" id="testCanvas">/canvas> js: onReady: function () { console.log("here") const query=wx.createSelectorQuery() query.select("#testCanvas").fields({node:true, size:true}, function(res){ console.log("here2", res) var canvas=res.node var ctx=canvas.getContext('2d') const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = res.width * dpr canvas.height = res.height * dpr ctx.scale(dpr, dpr) ctx.fillRect(0, 0, 100, 100) wx.canvasToTempFilePath({ canvas: "textCanvas", success:function(cttfp){ console.log("here3", cttfp) }, fail:function(cttfp){ console.error("饼图绘制失败", cttfp) } }) }).exec() },
2020-08-20