微信小程序 下拉刷新

微信小程序 下拉刷新_第1张图片
代码片段:

/**
     * 页面相关事件处理函数--监听用户下拉动作
     */
    onPullDownRefresh: function () {
      console.log(1111);
      //在当前页面显示导航条加载动画
      wx.showNavigationBarLoading(); 
      //显示 loading 提示框。需主动调用 wx.hideLoading 才能关闭提示框
      wx.showLoading({
        title: '刷新中...',
      })
      //隐藏loading 提示框
      setTimeout(function () {
        wx.hideLoading()
      }, 500)
      
      //隐藏导航条加载动画
      wx.hideNavigationBarLoading();
      //停止下拉刷新
      wx.stopPullDownRefresh();

      this.riliList(this.data.year,this.data.month)

    },

你可能感兴趣的:(小知识,微信小程序,微信小程序,javascript,小程序)