小程序-获取用户位置信息
Posted 南啾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序-获取用户位置信息相关的知识,希望对你有一定的参考价值。
wxml
<button open-type="getUserInfo" bindgetuserinfo="fetchInfo">获取位置</button> <view bindtap="getLocalPath">{{localPath}}</view>
js
data: {
"localPath":"请选择位置"
},
getLocalPath:function(){
var that = this;
//调用微信位置接口
wx.chooseLocation({
success:function(res){
that.setData({localPath:res.address});
},
})
},
以上是关于小程序-获取用户位置信息的主要内容,如果未能解决你的问题,请参考以下文章