onShow: function() {
wx.authorize({
scope: 'scope.userFuzzyLocation',
success(res) {
// console.log(res)
if(res.errMsg == 'authorize:ok'){
wx.getFuzzyLocation({
type: 'wgs84',
success(res) {
console.log(res) //此时里面有经纬度
}
})
}
},
fail(err) {
console.log(err)
}
})
},
app.json
"requiredPrivateInfos": [
"getFuzzyLocation"
],
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示" // 高速公路行驶持续后台定位
}
}
返回
请问为什么? 返回不到数据?