在vue使用企业微信接口获取定位,获取返回值后,无法对页面参数进行修改。
data () {
return {
lat:0
}
},
wx.getLocation({
type: 'wgs84',
success: function (res) {
alert(JSON.stringify(res))
this.lat=res.latitude //这里无法赋值,也无法调用这个定位以外的其他方法
},
cancel: function (res) {
alert('未能获取地理位置');
}
});