热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

微信小程序之permission字段

最近查看我发布的小程序出了问题,没有显示天气,打开文件查看,出现如下提示 


最近查看我发布的小程序出了问题,没有显示天气,打开文件查看,出现如下提示

 

 技术分享图片

 

 

那么如何解决呢

在 app.json 里面增加 permission 属性配置
然后在app.json中
添加代码

 整个app.json:

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

应该是小程序更新过之后需要用户自己允许是否获取地址

 

 

{
"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": "你的位置信息将用于小程序位置接口的效果展示"
}
}
}

 

微信小程序之permission字段




推荐阅读
author-avatar
mobiledu2502909217
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有