unapp获取当前经度、纬度 uni.getLocation({ type: 'wgs84',//默认 success: function(res) { let longitude = res.longitude; //经度 let latitude = res.latitude; //纬度 console.log('当前位置的经度:' + res.longitude); console.log('当前位置的纬度:' + res.latitude); } });