企业微信api中的wx.onLocationChange方法怎么不触发
wx.invoke( "startAutoLBS", { type: "gcj02" }, function(res) { if (res.err_msg == "startAutoLBS:ok") { console.log(res) //调用成功 wx.onLocationChange(function(res) { console.log(res) if (res.errMsg == "auto:location:report:ok") { var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90 var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。 var speed = res.speed; // 速度,以米/每秒计 var accuracy = res.accuracy; // 位置精度 var lbsIndex = 0; } else { console.log('错误处理2'); //错误处理 } }); } else { console.log('错误处理1'); //错误处理 } } ); 打开持续定位接口之后 wx.onLocationChange就不执行了 控制台输出console.log(wx.onLocationChange) 是undefined