getLocation我同意获取了,为什么每次开发工具上都弹出框
getPosition: function (openid) {
var that = this;
wx.getLocation({
type: ‘gcj02’,
success: function (res) {
that.setData({
nearLon: res.longitude,
nearLat: res.latitude,
},function(){
that.loadData(openid, res.longitude, res.latitude);
})
},
fail: function (res) {
console.log(‘没有允许定位!获取失败!’);
// that.loadData(openid, 113.264435, 23.129163);
},
complete: function () {
that.setData({ loadHidden: true });
}
})
},
第一次已经同意获取了,为什么后来调用这个,在开发工具上还得一直点击同意
4 回复