1、利用微信小程序接口 wx.getLocation() 获取当前经纬度,nofollow" target="_blank" href="https://mp.weixin.qq.com/debug/wxadoc/dev/api/location.html#wxopenlocationobject">接口。
2、拿到经纬度之后,通过微信的wx.request()请求百度地图的解析接口,传入我们获取到的经纬度,拿到当前定位的城市。
百度地图api获取的需要自己登陆获取一下 地址:https://lbsyun.baidu.com/index.PHP?title=wxjsapi
data: {},header: {
'Content-Type': 'application/json'
},success: function (res) {
// success
console.log(res);
var city = res.data.result.addressComponent.city;
原文链接:https://www.f2er.com/weapp/31430.htmlconsole.log("城市为" + city)
page.setData({ city: city });
},complete: function () {
// complete
}
})
}
});