soonfy / issue-blog

blog using issue
0 stars 0 forks source link

微信小程序上拉刷新,下滑更多 #34

Open soonfy opened 6 years ago

soonfy commented 6 years ago

上拉刷新

  1. 设置 enablePullDownRefresh = true

  2. 定义 onPullDownRefresh() 处理函数

  3. 刷新数据后,wx.stopPullDownRefresh 可以停止当前页面的下拉刷新

下滑更多

  1. 设置 onReachBottomDistance = 50

  2. 定义 onReachBottom() 处理函数

UI

  1. 变更弹出框状态

    wx.showLoading()
    wx.showToast()
    wx.hideToast()
    wx.hideLoading()
  2. 变更导航条状态

    wx.showNavigationBarLoading()
    wx.hideNavigationBarLoading()

soonfy