多次调用uni.chooseLocation
- 发布:2023-08-22 12:09
- 更新:2023-08-22 14:05
- 阅读:171
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: 10
HBuilderX类型: 正式
HBuilderX版本号: 3.8.12
手机系统: Android
手机系统版本号: Android 10
手机厂商: 华为
手机机型: honor v40
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
操作步骤:
预期结果:
{
"name": "地图位置",
"latitude": 40.432720,
"longitude": 113.087059,
"address": "",
"errMsg": "chooseLocation:ok"
}
返回的经纬度都是Number类型
{
"name": "地图位置",
"latitude": 40.432720,
"longitude": 113.087059,
"address": "",
"errMsg": "chooseLocation:ok"
}
返回的经纬度都是Number类型
实际结果:
{
"name": "地图位置",
"latitude": "40.432720",
"longitude": 113.087059,
"address": "",
"errMsg": "chooseLocation:ok"
}
返回的经度是Number类型,纬度是String类型
{
"name": "地图位置",
"latitude": "40.432720",
"longitude": 113.087059,
"address": "",
"errMsg": "chooseLocation:ok"
}
返回的经度是Number类型,纬度是String类型
bug描述:
uni.chooseLocation返回参数longitude,latitude 类型有时候错误
{
"name": "地图位置",
"latitude": "40.432720",
"longitude": 113.087059,
"address": "",
"errMsg": "chooseLocation:ok"
}
Diligent_UI - 【插件开发】【专治疑难杂症】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=193663(微信搜索飘逸科技UI小程序直接体验)】【骗子请绕道】问题咨询请加QQ群:120594820,代表作灵感实用工具小程序
返回具体什么错误
Lnews (作者)
不是返回错误,是和文档不符,文档说明返回的经纬度是Number类型,但实际操作过程中,偶尔会返回String类型
2023-08-22 14:01