说白了,用 win 的就不是人呗
windows什么时候可以出深色模式?这都几年了, 还舍不得出深色模式吗?
06-21我也遇到了这个问题
pc端微信 微信测试号关闭窗口后sessionStorage没有清空,这是为什么?pc端微信 微信测试号关闭窗口后sessionStorage没有清空,手机端没问题,关闭窗口后sessionStorage清空;
2021-12-06你好 同样遇到了该问题 你有试过高德地图的api吗 效果如何
wx.getLocation(Object object)返回20公里外的数据wx.getLocation(Object object)这个API,之前发帖问过,解释是返回的缓存数据, 但一直有用户反馈,获取位置时,返回的不准,有的用户是20公里外的位置(用户开车经过),有点无法接受了, 获取当前位置,已经加了权限,用户也同意了,为什么不能返回实时位置呢? 费电?用户需要这个功能,费电用户是接受的,我和很多用户沟通过,不然都不会用这个功能。 之前官方说要上onLocationChange的API,还能有希望吗?迫切需要..... 还原用户质询: 用户:你看,这个位置离我20公里、那个位置离我30公里... 我:微信有缓存,实在没办法,不好意思耽误您使用了,请尝试多点几次重新定位 用户:点了好几次了,还是这样啊... 我:.....
2019-04-09[图片]
小程序获取地理位置偏差几百公里- 当前 Bug 的表现(可附上截图) 这几天公司测试加油,开车全国跑,两天1000公里了 结果不在北京了getLocation返回的还是北京的地理位置 用的也是gcj02 - 预期表现 偏差在可控范围内 - 复现路径 onShow(){ this.getStationList() }, //获取油站 getStationList(){ let that = this; let carList = app.globalData.carList || []; let defaultCar = carList.find((item, index, arr) => { return item.flag == 1; }) || {}; let carId = defaultCar.carId || wx.getStorageSync('openId'); let token = app.globalData.token; try { //if (that.data.staTionList.length) { return; } wx.getLocation({ type: 'gcj02', success: (res) => { that.setData({ openTypeLocation: "" }) let brandChannel = config.channel; let token = app.globalData.token; console.log("getLocation:", res) wx.setStorageSync('userLocation', res); let pos = util.locationTranslate(res.longitude,res.latitude); util.$request( config.CircumStations,"GET",{ latitude: pos.latitude, longitude: pos.longitude, radius: 50000, carId, brandChannel, token }, (res) => { console.log('res-------', res); let staTionList = []; let station = res.data.data[0]; if (station) { staTionList.push(station) } that.setData({ staTionList }) }, (err) => { }, (res) => { }, { 'content-type': 'application/json', brandChannel: config.channel, } ) }, fail() { that.setData({ openTypeLocation: "openSetting" }) } }) } catch (err) { console.log("ERR ______________", err) } }, - 提供一个最简复现 Demo
2019-04-09