小程序获取城市
Posted 安筱雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序获取城市相关的知识,希望对你有一定的参考价值。
先要去百度地图申请一个key
getCity: function (cb) { var that = this wx.getLocation({ type: ‘gcj02‘, success: function (res) { var locationParam = res.latitude + ‘,‘ + res.longitude + ‘1‘ wx.request({ url: ‘https://api.map.baidu.com/geocoder/v2/‘, data: { ak: ‘---------‘, location: locationParam, output: ‘json‘, pois: ‘1‘ }, method: ‘GET‘, success: function (res) { console.log(res) that.data.city = res.data.result.addressComponent.city.slice(0, -1) typeof cb == "function" && cb(res.data.result.addressComponent.city.slice(0, -1)) }, fail: function (res) { // 重新定位 that.getCity(); } }) } }) }
以上是关于小程序获取城市的主要内容,如果未能解决你的问题,请参考以下文章