微信小程序getLocation 需要在app.json中声明permission字段

小程序更新了部分配置,位置授权要先在app.json里声明一下,这在以前是不需要,会提示getLocation 需要在app.json中声明permission字段,如图

解决办法:

在app.json中加入下面这段代码

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

就会有这样的提示

 整个app.json:

{
 "pages": [
  "pages/index/index",
  "pages/home/home",
  "pages/logs/logs",
  "pages/test/test"
 ],
 "window": {
  "backgroundTextStyle": "light",
  "navigationBarBackgroundColor": "#405f80",
  "navigationBarTitleText": "这是标题",
  "navigationBarTextStyle": "black",
  "enablePullDownRefresh ": "true"
 },
 "tabBar": {
  "borderStyle": "white",
  "position": "bottom",
  "list": [
   {
    "pagePath": "pages/home/home",
    "text": "首页",
    "iconPath": "images/tab/paidui.png",
    "selectedIconPath": "images/tab/paidui1.png"
   },
   {
    "pagePath": "pages/test/test",
    "text": "记录",
    "iconPath": "images/tab/jilu.png",
    "selectedIconPath": "images/tab/jilu2.png"
   }
  ]
 },
 "permission": {
  "scope.userLocation": {
   "desc": "你的位置信息将用于小程序位置接口的效果展示"
  }
 }
}

到此这篇关于微信小程序getLocation 需要在app.json中声明permission字段的文章就介绍到这了,更多相关小程序app.json声明permission内容请搜索呐喊教程以前的文章或继续浏览下面的相关文章希望大家以后多多支持呐喊教程!

声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。