微信小程序调用wx.startLocationUpdateBackground,锁屏可以获取坐标,但是解锁后就无法获取信息了。
使用微信lib版本: 2.11.2及以上。
运行微信版本:7.0.19
wx.startLocationUpdateBackground({
success: (res) => {
console.log(res);
},
fail: (res) => {
console.log(res)
}
});
const _locationChangeFn = function(res) {
console.log('location change', res)
}
wx.onLocationChange(_locationChangeFn)
你好,请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
解决了嘛