- wx.getConnectedWifi 在个别安卓机上获取的wifiInfo中没有secure参数
wx.getConnectedWifi 在个别安卓机上获取的wifiInfo中没有secure参数
2022-04-08 - wx.getUserProfile 如何做兼容?
wx.getUserProfile 和 wx.canIUse('wx.getUserProfile') 都是 undefined ,该怎么做兼容呢!!!🤷♂️ IOS 14.4 、微信 8.0.2、版本库 2.15.0 [图片] [图片]
2021-03-03 - ocr.printedText 中的 img 参数到底是个啥?
[图片] 有详细的例子么。
2020-05-22 - bindtransitionend调用次数为不对
- 当前 Bug 的表现(可附上截图) 用createAnimation创建动画,bindtransitionend去接收动画完成的回调。step动画是2个,bindtransitionend却被调用了三次。 - 预期表现 - 复现路径 - 提供一个最简复现 Demo doAnimation: function() { this.opacityCount = 0; var anim = wx.createAnimation({ }); anim.translate(0, 0).scale(1, 1).opacity(0).step({duration:1000, timingFunction:"linear"}); anim.translate(0, 0).scale(1, 1).opacity(1).step({ duration: 1000, timingFunction: "linear" }); this.setData({myanimation: anim.export()}); }, onAnimationEnd: function() { //只加入了两个step动画,为何这个函数会被调用3次!!! this.opacityCount++; console.log("opacityCount:" + this.opacityCount); },
2018-10-24 - touchmove 写拖动事件卡顿不流畅
页面上有个fixed悬浮按钮,希望可以在页面上任意拖动位置,但是现在的问题是写出来的拖动效果特别不流畅(反应延迟),请问有什么好的办法解决? <view class='helpbox' style="bottom:{{bottom}}px;right:{{right}}px;" catchtouchmove='setTouchMove'> <image class='helpimg' src='/images/help.png'></image> </view> js代码: setTouchMove:function(e){ var that = this; var width = 35 * rpx; var screenWidth = wx.getSystemInfoSync().windowWidth; var screenHeight = wx.getSystemInfoSync().windowHeight; var clientX = e.touches[0].clientX; var clientY = e.touches[0].clientY; //此处clientY与clientX为拖动悬浮窗超过设定的大小会返回默认显示位置 if (clientX < (screenWidth - width) && clientY < (screenHeight - width) && clientX > width && clientY > width) { that.setData({ right: screenWidth - clientX - width, bottom: screenHeight - clientY - width }) } else { return; // that.setData({ // right: 0, //默认显示位置 left距离 // bottom: 0 //默认显示位置 top距离 // }) } }
2018-12-11