- selectQuery获取canvas对应的node,返回为Null?,请微信官方尽快解决问题
<canvas class="covercanvas" type="webgl" id="covercanvas" style="width: 100%; height: 100%;position: absolute;top: 0;" bindtouchstart="touchStart" bindtouchmove="touchMove" bindtouchend="touchEnd" ></canvas> 调试模式下正常,预览或者发布出去的版本node为null 代码片段: const query = wx.createSelectorQuery().in(this); query.select('#covercanvas') .fields({ node: true, context: true, id: true, dataset: true, rect: true, size: true, scrollOffset: true }) .exec((res) =>{console.log(res[0]);}) 返回的值: bottom: 320 dataset: Object height: 320 id: "webgl" left: 0 node: null nodeCanvasType: "webgl" right: 414 scrollHeight: 0 scrollLeft: 0 scrollTop: 0 scrollWidth: 0 top: 0 width: 414 可以看见,返回得node值为null。这个只有在发布或者预览的版本上有,调试模式下没有。@微信官方,请解决一下。
2020-11-18 - JSSDK1.3.2跳转功能失效,wx.miniProgram.navigateTo无效?
环境:微信小程序 组件名称:WebView 涉及SDK:JSSDK1.3.2提供的navigateTo,reLaunch,redirectTo等功能 微信版本:目前是7.0.15,但是在7.0.13和7.0.14均测试过无效; BUG: 在微信开发者工具之中wx.miniProgram.navigateTo有效,但是在真机上无任何反应,加了success和fail函数均不会触发。问题是在4月初发现的,在别的帖子上看到说是微信最新版本的bug,目前到5月底问题依旧存在,特来微信官方论坛询问一下?是我调用方式的问题还是问题未修复? wx.miniProgram.reLaunch({ url:"/pages/index/index", fail:(err)=>{ alert(err); console.log(err); } });
2020-05-29