uni-app无法正常使用uni.getLocation()

 uniapp 在 page.json里配置permission字段失效

{
  "pages": ["pages/index/index"],
  "permission": {
    "scope.userLocation": {
      "desc": "你的位置信息将用于小程序位置接口的效果展示"
    }
  }
}

uni-app无法正常使用uni.getLocation()_第1张图片

permission

微信客户端 7.0.0 及以上版本支持

小程序接口权限相关设置。字段类型为 Object,结构为:

属性 类型 必填 默认值 描述
scope.userLocation PermissionObject   位置相关权限声明

PermissionObject 结构

属性 类型 必填 默认值 说明
desc string   小程序获取权限时展示的接口用途说明。最长 30 个字符

 

 建议在HBuilderX里manifest.json 配置中选择微信小程序位置接口权限uni-app无法正常使用uni.getLocation()_第2张图片

 

然后微信小程序编译器自动生成配置

 

重新编译即可 

uni-app无法正常使用uni.getLocation()_第3张图片

你可能感兴趣的:(小程序)