一、配置
我们使用app.json文件来对微信小程序进行全局配置,决定页面文件的路径、窗口表现、设置网络超时等、设置多tab等
{
"pages": [
"pages/index/index",
"pages/logs/index"
],
"window": {
"navigationBarTitleText": "Demo"
},
"tabBar": {
"list": [{
"pagePath": "pages/index/index",
"text": "首页"
}, {
"pagePath": "pages/logs/logs",
"text": "日志"
}]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": true
}
app.json配置项列表
属性 | 类型 | 描述 |
pages | String Array | 设置页面路径 |
window | Object | 设置默认页面的窗口表现 |
tabBar | Object | 设置底部tab表现 |
networkTimeout | Object | 设置网络超时时间 |
debug | Boolean | 是否开启debug模式 |
Pages
接受一个数组,每一项都是字符串,来指定小程序由哪些页面组成,每一项代表对应页面的路径加文件名信息,数组的第一项代表小程序的初始页面。
文件名不用写后缀,因为框架会自动去寻找.json,.js,.wxml,.wxss四个文件进行整合。
Window
用于设置小程序的状态栏、导航条、标题、窗口背景色。
属性 | 类型 | 默认值 | 描述 |
navigationBarBackgroundColor | HexColor | #000000 | 导航栏背景色 |
navigationBarTextStyle | String | white | 导航栏标题颜色,仅支持black/white |
navigationBarTiltleText | String | 导航栏标题文字内容 | |
backgroundColor | Hexcolor | #ffffff | 窗口的背景色 |
backgroundTextStyle | String | dark | 下拉背景字体、loading图的样式、仅支持dark/light |
enablePullDownRefersh | Boolean | false | 是否开启下拉刷新 |
tabBar
如果我们的小程序是一个多tab应用,那么我们可以通过tabBar配置指定tab栏的表现,以及切换tab时显示对应的页面.
注意:通过页面跳转(wx.navigateTo)或者页面重定向(wx.redirectTo)所到达的页面,即使他是定义在tabBar配置中的页面,也不会显示底部的tab栏.
tabBar是一个数组,只能最少配置2个、最多5个tab。
属性 | 类型 | 必填 | 默认值 | 描述 |
color | HexColor | 是 | 颜色 | |
selectedColor | HexColor | 是 | 选中时的颜色 | |
backgroundColor | HexColor | 是 | tab的背景色 | |
borderStyle | String | 否 | black | tabbar上边框的颜色black/white |
list | Array | 是 | tab的列表 | |
position | String | 否 | bottom | 可选值bottom和top |
其中list接收一个数组,数组的每一个项都是对象,其属性值如下:
属性 | 类型 | 必填 | 说明 |
pagePath | String | 是 | 页面路径,必须先在pages中定义 |
text | String | 是 | tab上按钮的文字 |
iconPath | String | 是 | 图片路径,icon大小限制为40kb |
selectedIconPath | String | 是 | 选中时图片路径 |
networkTimeout
属性 | 类型 | 必填 | 说明 |
request | Number | 否 | wx.request的超时时间, 默认都为6000 |
connectStocket | Number | 否 | wx.connectStocket的超时时间 |
uploadFile | Number | 否 | |
downloadFile |
debug
可以在开发者工具开启debug模式,在开发者工具的控制面板,调试信息以info形式给出,其信息有page的注册,页面路由,数据更新,事件触发
page.json
每一个小程序页面也可以使用.json文件来对本页面的窗口表现进行配置.并且只是设置app.json中的window配置项内容,页面中配置项会覆盖app.json中相同的配置项.
页面的.json只能设置window相关的配置项,以决定本页面的窗口表现,所以无需写window这个键.如:
{
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "微信接口功能演示",
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "light"
}
属性 | 类型 | 默认值 | 描述 |
navigationBarBackgroundColor | HexColor | #000000 | 导航栏背景色 |
navigationBarTextStyle | String | white | 导航栏标题颜色,只支持black/white |
navigationBarTitleText | String | 导航栏标题文字内容 | |
backgroundColor | HexColor | #ffffff | 窗口背景色 |
backgroundTextStyle | String | dark | 下拉背景字体,loading图的样式,仅支持dark/light |
enablePullDownRefresh | Boolean | false | 是否开启下拉刷新 |
disableScroll | Boolean | false | 设置为true则页面整体不能上下滚动,只有在page.json中有效,无法在app.json中设置该项 |