WeChatウィジェット--ドロップダウン・リフレッシュ/アップロード

1431 ワード

参照ドキュメント:https://blog.csdn.net/ruffaim/article/details/78839214
ウィジェットでは、ユーザーの上部ドロップダウンはデフォルトで禁止されています.appで有効にする必要があります.jsonの設定はすべてのページに有効で、個別のページ設定は現在のページに有効です.
jsonファイル:
"window": {
    "enablePullDownRefresh": true  //    true         
  },
//     
  onPullDownRefresh: function () {
    //         
    wx.showNavigationBarLoading();
    var that = this;
    wx.request({
      url: 'https://xxx/?page=0',
      method: "GET",
      header: {
        'content-type': 'application/text'
      },
      success: function (res) {
        console.log(that.data.moment);
        //         
        wx.hideNavigationBarLoading();
        //       
        wx.stopPullDownRefresh();
      }
    })
  },
//       
  onPullDownRefresh: function() {
    wx.stopPullDownRefresh();
  },
/**
   *              
   */
  onReachBottom: function () {
    var that = this;
    //       
    wx.showLoading({
      title: '     ',
    })
    //   +1
    page = page + 1;
    wx.request({
      url: 'https://xxx/?page=' + page,
      method: "GET",
      //     
      header: {
        'content-type': 'application/text'
      },
      success: function (res) {
        //     --  
        //      
        wx.hideLoading();
      }
    })
  },