wx.getLocation({
type: 'wgs84',
success: function (res) {
var latitude = res.latitude;
var longitude = res.longitude;
wx.login({
});
},
fail: function (res) {
//未開啟定位權限,拉起授權
if (res.errMsg == 'getLocation:fail auth deny') {
//重新拉起授權
wx.openSetting({
success: function (res) {
if (res.authSetting['scope.userLocation'] == false) {
wx.showModal({
title: '提示',
content: '您未開啟定位權限,將導致無法使用本軟件',
showCancel: false
});
} else {
wx.showModal({
title: '提示',
content: '您已開啟定位權限,請重新點擊登錄',
showCancel: false
});
}
}
});
}
}
})
轉自:https://gitee.com/yangad/codes/619jwfzx0r4dcl7boatqg40