1. 局部導(dǎo)航欄的配置
- 可以在每個具體頁面的.json文件中單獨配置局部導(dǎo)航欄.
- 缺點: 不方便管理, 維護和迭代.
- page/index.json
{
"navigationBarTitleText": "電影推薦",
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#fff",
"enablePullDownRefresh": true // 監(jiān)聽用戶下拉刷新事件, 當(dāng)用戶下拉時, onPullDownRefresh()函數(shù)被調(diào)用, 其效果相當(dāng)于主動調(diào)用: wx.startPullDownRefresh();
}
2. 配置全局導(dǎo)航欄
- 通過在全局app.json文件中配置window屬性, 可以實現(xiàn)全局導(dǎo)航欄的配置;
- app.json
{
"window": {
"navigationBarTitleText": "Default Title", // 默認的標(biāo)題, 當(dāng)局部沒有配置會主動采用該配置;
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#fff",
"backgroundTextStyle": "light"
},
}