- 某些情况下,boundingClientRect回调不会执行的问题
Component({ methods: { getRect() { this.success = ""; //换一个名字,比如this._success就好使 // this.fail = ""; // this.complete = ""; var query = wx.createSelectorQuery().in(this); query .select(".wrap .content") .boundingClientRect(function (res) { console.log(res); }) .exec(); }, }, }); 在组件内部,给组件的success赋值(this.suceess,this.fail,this.complete),再调用boundingClientRect,回调函数不会执行。 报黄:An SelectorQuery call is ignored because no proper page or component is found. Please considering using `SelectorQuery.in` to specify a proper one.
2023-03-31 - 在页面onLoad函数中调用await wx.hideLoading,在部分ios机型下发生未知错误
在页面onLoad函数中调用await wx.hideLoading,在部分ios机型下发生未知错误,后面的js不会执行,也不报错。安卓机暂时未发现问题。 复现机型:iPhone12,iPhone13,iPhone7 plus
2022-10-18 - input组件无法聚焦的问题
部分ios机型下catchtouchend会防止input组件聚焦 wxml: <text>bindtouchend:</text> <view bindtouchend="touchEnd"> <input placeholder="请输入" style="border: 4rpx solid #000;height: 100rpx;" /> </view> <text>catchtouchend:</text> <view catchtouchend="touchEnd"> <input placeholder="请输入" style="border: 4rpx solid #000;height: 100rpx;" /> </view>
2021-12-29 - 基础库更新后的bug?
今天微信好像将基础款更新了,我升级了一下后原项目出现了一些bug,下面是我已经的2个: 一,ios调用wx.openBluetoothAdapter失败 二,是不是微信改了wx.switchTab的内部实现,导致的问题是,我调用这个之方法后中间的页面中的函数也会执行,我是不是这样。
2017-12-20