https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.openLocation.html
昨天还可以的,今天就一直在showLoading,可以执行complete,success和fail都不会执行。(上面微信版本是随便填的,基础库版本从2.11到2.13都试了)
getLocation(){
var page=this
wx.showLoading({
title: '自动获取定位中...'
})
wx.getLocation({
type: 'gcj02', //返回可以用于wx.openLocation的经纬度
success: function(res) {
wx.hideLoading()
var latitude = res.latitude
var longitude = res.longitude
page.setData({
lat:latitude,
lng:longitude
})
page.loadCity(latitude,longitude);
}
})
},
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/authorize.html