wx.startLocationUpdateBackground({
success(res) {
console.log('开启后台定位', res)
wx.onLocationChange(function(res) {
console.log('location change', res)
})
},
fail(res) {
console.log('开启后台定位失败', res)
}
})
"permission": {
"scope.userLocation": {
"desc": "上报信息需要获取您的位置"
}
},
"requiredBackgroundModes": [
"location"
],
原生小程序没有问题
但uni-app下报:{errMsg: "startLocationUpdateBackground:fail scope unauthorized"}错误!
有解决方案吗?
2 个回复
lz_0618 (作者) - 老程序员
什么问题都是石沉大海
x***@vip.qq.com
导出小程序后 在原生小程序里自己手动增加功能 这个是临时的解决方案