刚测试了,用 "path": "/pages/index/index?a=1" 可以接收到,目前query形同虚设 不排除微信修复这个bug
urlscheme.generate无法传的query无法获取(query形同虚设){ "jump_wxa": { "path": "/pages/index/index", "query": "aaaa" }, "is_expire":true, "expire_time":1606737600 } 按照例子写query,但是发现无论是app的onLaunch事件,还是page的onLoad事件都无法拿到填写的query
2020-12-30相同问题 小米10点转发无效 点保存手机直接卡死
企业微信打开小程序,image组件 show-menu-by-longpress 长按无效?[图片] 系统:ios12.3.1 苹果XR 微信上是正常的,可以弹出菜单,企业微信上长按无反应 代码片段:https://developers.weixin.qq.com/s/JIOmBZmS7OhP
2020-09-07+1 小米10 微信:7.0.16
配置lazyCodeLoading后,分包页岩显示空白"lazyCodeLoading": "requiredComponents", 配置lazyCodeLoading后,分包页岩显示空白
2020-07-09确定不是100个超大对象吗
为什么在真机上渲染数据超级慢?最近一段时间发现在真机上渲染数据特别慢,渲染100条数据大概需要10秒左右,不过在微信开发者工具上没有发现此问题,各位大佬知道为什么吗???
2019-10-31首先 我也出现了如此问题,暂时使用view和image替代了 cover- ,顺便补充一下问题,(个别iPhone6 所有iPhoneX系列可复现), 在toast期间,滑动屏幕 tabbar也会动, 当你首页滑动一定高度后(大于半屏) , 切换页面 ,再切换回来,tabbar下移大概100px 希望官方看到吧,此外,cover-view先渲染出来后会被后出来的canvas覆盖
自定义tabBar,在长列表需要网络加载时上拉加载出现bar上移,如何解决?因为需要网络加载才能复现,所以暂时贴不了代码
2019-10-29主要是新出的基本都没有,很多案例还都是旧的
小程序的文档是谁写的啊?怎么会有这么难找的文档,简直了。可读性也太差了,分类分的乱七八糟的,简直够了,知道有的,还是找不到,能不能参考一下bootstrap和vue啊!我查文档查的暴走
2019-01-23由于小程序的逻辑和视图引擎是异步分离的,无法做到流畅。需要修改实现方式,或者不采取需要拖动的解决方案。
小程序Android版本touchmove 事件侦听- 当前 Bug 的表现(可附上截图) 在安卓端绑小程序定一个view 的touchmove 事件时,纵向触摸滑动每秒只有5次事件回调 但是用网页端复现的时候表现正常 - 预期表现 - 复现路径 - 提供一个最简复现 Demo 小程序代码: - index.wxml <view class="layer" bindtouchmove="layerMove"> <text>{{touchMovesPerSecond}}</text> </view> - index.js const app = getApp() Page({ data: { touchMovesPerSecond: 0 }, touchMovesArray: [], layerMove: function(event) { this.touchMovesArray.push(new Date()) const now = new Date() this.touchMovesArray = this.touchMovesArray.filter(time => time > now - 1000) this.setData({ touchMovesPerSecond: this.touchMovesArray.length }) } }) --------------------------------------------分界线------------------------------------------ Web 端代码: <!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> body, html { background-color: #4e4d4d; margin: 0px; padding: 0px; height: 100%;} #container { background-color: red; height: 100%; } </style> </head> <body> <div id="container"> <p id="count"></p> </div> <script> const touchMovesArray = [] const handleMove = function() { touchMovesArray: [], touchMovesArray.push(new Date()) const now = new Date() touchMovesArray = touchMovesArray.filter(time => time > now - 1000) document.querySelector('#count').innerHTML = touchMovesArray.length } var el = document.querySelector('#container') el.addEventListener("touchmove", handleMove, false); </script> </body> </html>
2018-12-27