在自定义组件或包含自定义组件的页面中,应使用 [代码]this.createSelectorQuery()[代码] 来代替wx.createSelectorQuery()。 把 组件的this 当做参数传给 工具类进行替换就行。
创建'2d'canvas出现Cannot read 'node' of null的问题?想创建一个2d类型的canvas,采用微信官方文档中的范例,使用wx.createSelectorQuery().select('#').fields({ node: true, size: true }).exec()语句,可调试总是出错,显示Cannot read property 'node' of null;at SelectorQuery callback function。TypeError: Cannot read property 'node' of null。[图片] index.wxml文件 <view class="head-container"> <canvas type="2d" canvas-id="canvasIdPass" style="width: 300px; height: 300px;"></canvas> </view> index.js文件 onLoad:function(){ wx.createSelectorQuery().select('#canvasIdPass').fields({ node: true, size: true }).exec(function(res){ const canvas = res[0].node const ctx = canvas.getContext('2d') console.log('res[0]', res[0]) }) }
2023-11-02可以使用complete回调事件 [图片]
关于微信jdk分享朋友圈h5页面调用微信的分享朋友圈接口 如何 在调用之后执行接口的成功回调函数(不管他有没有分享,我只需要点击分享朋友圈这个之后触发回调都成啊) 而不是 一进去页面就触发了success回调
2021-11-22带一个参数是可以的,但是,带两个参数传到后台后,字符串&会被转义。
微信分享界面的url不能带参数吗?这个是带参数的 报错 63002 [图片] 这个是没有带参数的 就是可以自定义分享的 [图片]
2021-11-22