我在
wx.getLocation({
isHighAccuracy: true,
type: 'gcj02',
success (res) {
qqmapsdk.reverseGeocoder({
location: {
latitude: res.latitude,
longitude: res.longitude
},
success: function (addressRes) {
var addressRes = addressRes.result;
that.setData({
latitude: addressRes.location.lat,
longitude: addressRes.location.lng
})
设置了变量
that.setData({
latitude: addressRes.location.lat,
longitude: addressRes.location.lng
})
然后在
wx.request({
url: app.globalData.weburl + 'index.php',
data:{
latitude:that.data.latitude,
longitude:that.data.longitude
},
为什么 在data 中 that.data.latitude 获取不到呢。全都是空
开发者工具截个图吧,别文字描述