- 城市服务实名验证现在还能申请使用吗?
[图片] 现在还能申请使用吗?
2023-09-26 - 为什么用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-03-28 - 为什么调用了wx.offLocationChange控制台要报错啊?
[图片][图片]
2021-11-18