- 微信小程序突然有部分用户无法正常使用,全部接口请求失败。安卓、ios和鸿蒙都出现过此类情况。
近期微信小程序突然有部分用户无法正常使用,全部接口请求失败。安卓ios和鸿蒙系统都有,以上手机型号版本是其中一例,由于出现在用户手机上,不太好查看机型,仅记录一例。 删除小程序、重启手机后用户试了还是无法解决。 用户请求完全到不了后台就异常了,同一时刻其他用户可正常使用;目前已经出现概率大概在万分之十左右。 由于是顾客的手机出的问题。我们没办法跟踪,请大佬们帮忙出个主意如何排查解决。
12-07 - Cannot read property 'errMsg' of undefined?
[图片]uniapp小程序打包后报以上错误是什么原因
09-18 - startLocationUpdate、onLocationChange获取位置不准
https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.startLocationUpdate.html
2024-04-26 - startLocationUpdate安卓手机获取位置有时不准确
使用wx.startLocationUpdate()、wx.onLocationChange() 安卓手机真机测试的时候 有时会出现获取的位置不对的现象,代码如下: getWXLocation() { let that = this; return new Promise((resolve, reject) => { that.locationChangeFn = (res) => { resolve(res); }; wx.startLocationUpdate({ type: "wgs84", accuracy: "high", success: (res) => { wx.onLocationChange(that.locationChangeFn); }, fail: (err) => { console.log("获取当前位置失败", err); reject(); }, }); }); } [图片] 安卓手机获取到的位置的provider是network IOS是gps,是否和网络稳定性有关?
2024-04-25 - 使用map地图同一道路上既有线又有围栏, polygon 会被polyline遮挡,设置层级无效
https://developers.weixin.qq.com/miniprogram/dev/component/map.htmlhttps://developers.weixin.qq.com/miniprogram/dev/component/map.html
2024-04-16