- 安卓手机navigateTo跳转页面,打开了两个页面
华为mate30 微信系统8.0.25下 A页面调用wx.navigateTo打开B页面,B页面同时出现两个。不是必现,复现概率大概1/40。代码如下:
2022-07-28 - wx.getlocation 获取位置为负数?
调用获取定位方法wx.getlocation()拿到的结果为lng":-1017.291235,"lat":-1059.628755;时间:2022-04-29 11:40:33,仅出现一次,不能复现。 机型:系统版本:Android 11;机型:remmi;微信版本:8.0.20;网络:4G getLocation() { let _this = this; wx.getLocation({ type: 'gcj02', success(res) { console.log(res) _this.setData({ lat: res.latitude, lng: res.longitude }) _this.getUssStore(); }, fail(res) { console.log(res) _this.getUssStore(); } }) }
2022-05-17 - 微信小程序提交审核时,有非法请求?
最近在提交小程序审核时,经常发生服务器收到非法请求。发生时间都在提交审核那一刻。该小程序正常只会在合肥地区使用。但是非法请求ip地址 显示49.235.205.65上海腾讯云。请求参数为 "shop_id":"52873","lng":"121.50109","lat":"31.23691?shopId=52111","entrance":"0" 页面为一个店铺列表,点击列表进该店铺详情页(内嵌h5),点击时调用以下goShopDet()方法。 goShopDet(e) { let _this = this; console.log(e); let shopId = e.currentTarget.dataset.shopid; this.setData({ shopUrl: `${this.data.shopUrl}?shopId=${shopId}&lng=${this.data.lng}&lat=${this.data.lat}`, shopId: shopId }) let url = encodeURIComponent(_this.data.shopUrl) console.log(_this.data.shopUrl) wx.navigateTo({ url: `/pages/webView/webView?url=${url}` }) }
2021-09-09 - ios部分手机调用微信wx.previewImage方法后,返回页面标题消失
首页附近门店点击进入店铺详情页,再点击详情页头部左边查看门店图片,点击图片放大后,再返回,页面标题消失。ios9.3.3,微信7.0.4必现 [图片] [图片]
2019-07-30