全局配置
小程序根目录下的 app.json
文件用来对微信小程序进行全局配置,决定页面文件的路径、窗口表现、设置网络超时时间、设置多 tab 等。
完整配置项说明请参考小程序全局配置
以下是一个包含了部分常用配置选项的 app.json :
{
"pages": [
"pages/home/home",
"pages/my/my"
],
"window": {
"backgroundColor": "#F6F6F6",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#eeeeee",
"navigationBarTitleText": "微信小程序开发",
"navigationBarTextStyle": "black"
},
"tabBar": {
"list": [{
"pagePath": "pages/home/home",
"text": "首页"
}, {
"pagePath": "pages/my/my",
"text": "我的"
}]
},
"networkTimeout": {
"request": 20000,
"connectSocket": 20000,
"uploadFile": 20000,
"downloadFile": 20000
},
"debug": true,
"sitemapLocation": "sitemap.json",
"style": "v2",
"navigateToMiniProgramAppIdList": [
"wxae11207ff9bdc219"
]
}
完整配置项说明请参考小程序全局配置
页面配置
每一个小程序页面也可以使用同名 .json
文件来对本页面的窗口表现进行配置,页面中配置项会覆盖 app.json
的 window
中相同的配置项。
完整配置项说明请参考小程序页面配置
例如:
{
"backgroundColor": "#F6F6F6",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#eeeeee",
"navigationBarTitleText": "微信小程序开发",
"navigationBarTextStyle": "black"
}
网友评论