app.json 配置
Max Zhang Lv4

app.json 配置

app.json 是小程序的全局配置文件,用来配置页面路径、窗口表现、设置网络超时时间、底部 tab 等。

配置项

配置项较多,这里只列出一些常用的配置项。

entryPagePath

小程序的首页路径,必须是 pages 中的路径,例如 pages/index/index

window

窗口表现,用来设置小程序的窗口背景色、顶部颜色、底部颜色等。

1
2
3
4
5
6
7
8
9
10
{
"window": {
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "小程序",
"backgroundColor": "#f8f8f8",
"backgroundTextStyle": "light",
"enablePullDownRefresh": true
}
}

其中navigationStyle表示导航栏样式,default表示默认样式,custom表示自定义样式。如果设置为custom,需要在页面中自己实现导航栏。

 评论
评论插件加载失败
正在加载评论插件