小程序下拉刷新真機上不回縮問題解決
- 2019 年 11 月 6 日
- 筆記
加上代碼wx.stopPullDownRefresh(); //停止下拉刷新
/** * 頁面相關事件處理函數--監聽用戶下拉動作 */ onPullDownRefresh: function () { this.getCourseList(); this.getErrBookList(); this.getYouLike(); this.getCoach(); this.getBrowsedCourseList(); this.getBrowsedVideo(); wx.stopPullDownRefresh(); },