小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.getLocation
初次不加载,第二次刷新才可以获取到当前经纬度是什么原因所致???怎么解决
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
看了下你的代码片段
吧getPageProjectData 放到里面就可以了。
调用的地方没对。有顺序的 ,相当于wx.getLocation还没加载出来你就调用他的数据了
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
对,谢谢你啊
不用谢
请问解决了吗?我也遇到了这个问题,在开发工具预览中,得二次编译才能看到,ios端的话可以看到,但是要重新触发一次getLocation。安卓则是完全不行了
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
onLoad:
function
() {
console.log(
'111'
)
// debugger
wx.login({
success:
(res) {
app.login({
code: res.code
});
}
var
that =
this
;
// 获取当前位置,速度 wgs84 返回 gps 坐标
wx.getLocation({
type:
'wgs84'
,
//wgs84
longitude = res.longitude;
latitude = res.latitude;
speed = res.speed
accuracy = res.accuracy
wx.setStorageSync(
"latitude"
, latitude)
"longitude"
, longitude)
that.setData({
speed: speed,
accuracy: accuracy,
longitude: longitude,
latitude: latitude
.getPageProjectData(that.data.type, wx.getStorageSync(
), wx.getStorageSync(
))
},
代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)这个代码片段
https://developers.weixin.qq.com/s/zZy2GAmy7y9G
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
看了下你的代码片段
吧getPageProjectData 放到里面就可以了。
调用的地方没对。有顺序的 ,相当于wx.getLocation还没加载出来你就调用他的数据了
对,谢谢你啊
不用谢
请问解决了吗?我也遇到了这个问题,在开发工具预览中,得二次编译才能看到,ios端的话可以看到,但是要重新触发一次getLocation。安卓则是完全不行了
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
onLoad:
function
() {
console.log(
'111'
)
// debugger
wx.login({
success:
function
(res) {
app.login({
code: res.code
});
}
});
var
that =
this
;
// 获取当前位置,速度 wgs84 返回 gps 坐标
wx.getLocation({
type:
'wgs84'
,
//wgs84
success:
function
(res) {
var
longitude = res.longitude;
var
latitude = res.latitude;
var
speed = res.speed
var
accuracy = res.accuracy
wx.setStorageSync(
"latitude"
, latitude)
wx.setStorageSync(
"longitude"
, longitude)
that.setData({
speed: speed,
accuracy: accuracy,
longitude: longitude,
latitude: latitude
});
}
});
this
.getPageProjectData(that.data.type, wx.getStorageSync(
"longitude"
), wx.getStorageSync(
"latitude"
))
},
代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)这个代码片段
https://developers.weixin.qq.com/s/zZy2GAmy7y9G