您的位置:首页 > 移动开发 > 微信开发

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

2020-03-17 12:04 651 查看

小程序更新了部分配置,位置授权要先在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内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息