1. 程式人生 > >關於小程式全域性配置的一些坑

關於小程式全域性配置的一些坑

1.導航欄

{
  "window":{
    "navigationBarBackgroundColor": "#268DCD", //此處只能用hexcolor
    "navigationBarTextStyle": "black",//只能black、white兩個值
    "navigationBarTitleText": "wechat",
    "backgroundColor": "#000000",
    "backgroundTextStyle": "light"
  }
}

 

2.頁面重新整理

因為只能頁面重新整理,所以不能出現在全域性配置中。 

用法:

下拉重新整理

 wx.startPullDownRefresh()

停止當前頁面下拉重新整理

Page({
  onPullDownRefresh: function(){
    wx.stopPullDownRefresh()
  }
})