我的需求,页面一打开就获取当前的省份!!!
app.json 配置
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于定位当前省份"
}
}
index.js
onReady: function () {
let _this = this;
wx.getLocation({
type: 'wgs84',
success(res) {
console.log(res)
const latitude = res.latitude
const longitude = res.longitude
const speed = res.speed
const accuracy = res.accuracy
_this.getProvinceName(latitude, longitude)
}
})
},
getProvinceName(latitude, longitude){
wx.request({
url: 'https://apis.map.qq.com/ws/geocoder/v1/?location=' + latitude + ',' + longitude + '&key=填写你自己的key',
data:{},
success: (res)=> {
console.log(res)
// res.data.result.address_component.pro