华为手机调用不了wx.chooseLocation,其他手机没有问题的
- 当前 Bug 的表现(可附上截图)
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
<view catchtap=‘chooseLocation’>
选择地理位置</view>
chooseLocation: function () {
var _this = this;
wx.chooseLocation({
success(res) {
console.log(res)
_this.setData({
address: res.address,
addrName: res.name,
latitude: res.latitude,
longitude: res.longitude
})
console.log(_this.data.addrName)
}
});
},
3 回复
这边用华为Nova3e测试没有复现问题,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)