javascript技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript技巧 > 小程序app.json声明permission

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

作者:guochanof

这篇文章主要介绍了微信小程序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内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文