第4课 微信小程序app.json目录结构解析:

app.json全局配置文件内容详解:
{
"pages": [
"pages/logs/logs",
"pages/index1/index1",
"pages/index2/index2",
"pages/index3/index3"
],
"window": {
"backgroundTextStyle": "light",
"enablePullDownRefresh":true,
"navigationBarBackgroundColor": "#fff",
"backgroundColor":"#000",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar":{
"list":[
{
"pagePath": "pages/index2/index2",
"text": "首页",
"iconPath": "img/sy.png",
"selectedIconPath": "img/sy1.png"
},
{
"pagePath": "pages/index1/index1",
"text": "我的",
"iconPath":"img/atm.png",
"selectedIconPath":"img/atm1.png"
}
]
},
"sitemapLocation": "sitemap.json"
}
效果图如下:
