楼主,请问下,有解决了吗?
为什么用wx.onLocationChange()接口获取位置速度有的时候快有的时候慢甚至有时5s?const _locationChangeFn = (res) => { const latitude = res.latitude const longitude = res.longitude header.latitude = latitude header.longitude = longitude log("获取位置时间") wx.offLocationChange(_locationChangeFn) requesAjax() } wx.startLocationUpdate({ success(res) { wx.onLocationChange(_locationChangeFn); }, fail(res) { clickShowModel("提示", "对不起,没有您的地理位置,壹启程将无法为您提供正常服务4", "设置", "取消", function (r) { if (r) { wx.openSetting({ success(res) { if (res.authSetting["scope.userLocation"]) { // 如果给了授权就继续执行. requesAjax(); } } }) } }) } })
2022-04-18我也出现了这个问题 谁有解决过了吗?
getCurrentPages的BUG!!!!调用getCurrentPages后,尽然会修改页面里的值!!!!!我是读取啊,没有任何修改行为!!!! 当前页有数据 data:{form_data:{1,2,3}} let pageInstance=getCurrentPages()[getCurrentPages().length-1]; 就那么一句获取当前页 然后,当前页面里的数据就改了! 变成了data:{form_data:"1"} 这么诡异!
2019-05-30