微信小程序API 下拉刷新

2018-09-29 16:39 更新

onPullDownRefresh


在 Page 中定义 onPullDownRefresh 处理函数,监听该页面用户下拉刷新事件。

  • 需要在configwindow选项中开启enablePullDownRefresh
  • 当处理完数据刷新后,wx.stopPullDownRefresh可以停止当前页面的下拉刷新。

wx.startPullDownRefresh(OBJECT)

基础库 1.5.0 开始支持,低版本需做兼容处理

开始下拉刷新,调用后触发下拉刷新动画,效果与用户手动下拉刷新一致

Object参数说明:

参数类型必填说明
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明:

参数名类型说明
errMsgString接口调用结果

示例代码:

wx.startPullDownRefresh()

wx.stopPullDownRefresh()

停止当前页面下拉刷新。

示例代码:

Page({
  onPullDownRefresh: function(){
    wx.stopPullDownRefresh()
  }
})


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号