How to realize the drop-down refresh of Mini Program written in wepy framework?

the drop-down refresh code of native Mini Program is as follows

onPullDownRefresh: function () {
    this.onLoad();
    this.onShow();
    wx.stopPullDownRefresh()
}

if you paddle down, you won"t be able to get up, and there is no animation loaded.


your code is written to stop refreshing, of course not.
so

onPullDownRefresh() {
    wx.startPullDownRefresh({
        success: () => {}
    })
}

enablePullDownRefresh: true


doesn't it stop?

wx.stopPullDownRefresh()
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b2b834-2b2eb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b2b834-2b2eb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?