问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API 和组件 微信小程序 Bug wx.getLocation 客户端 6.7.2 2.3.0
- 当前 Bug 的表现(可附上截图)
- 预期表现
进入成功回调
- 复现路径
- 提供一个最简复现 Demo
wx.getLocation({
type: 'wgs84',
success: function (res) {
that.setData({
latitude: res.latitude,
longitude: res.longitude
});
that.loadData();
},
fail: function (info) {
console.log(info);
}
})