用户拒绝授权位置信息,如何重新发起请求,好像记录了拒绝状态
fail: function (res) {
wx.showModal({
showCancel: false,
title: ‘请授权获取用户信息!否则将无法查看详情。’,
success:function(res){
console.log(111)
wx.getLocation({
type: ‘wgs84’,
success: function (res) {
var latitude = res.latitude
var longitude = res.longitude
var speed = res.speed
var accuracy = res.accuracy
}
})
}
})
}
这个拒绝之后执行的方法,不会执行wx.getlocation()这个api了,能有什么好的办法,清除记录状态或者重新发起请求吗?另外,清空缓存的函数试过了,wx.clearStorageSync()和wx.clearStorage()试过了。谢谢了。
2 回复