收藏
回答

页面上拉为什么会触发onReachBottom

框架类型 问题类型 操作系统 工具版本
小程序 Bug Windows 1.02.1805181

在开发者工具中,下拉为什么会触发onReachBottom事件呢?还有上拉的事件根本不触发...!

JS代码:

onReachBottom:function(){
    wx.showToast({
      title: '上拉加载',
      icon: 'succes',
      duration: 1000,
      mask: true
    });
  },
  /**
   * 下拉刷新
   */
  onPullDownRefresh:function(){
    wx.showToast({
      title: '333',
      icon: 'succes',
      duration: 1000,
      mask: true
    });
  }

在当前的页面的json中配置如下:

{
  "enablePullDownRefresh": true,
  "onReachBottomDistance":50
}

页面上只有view没有用到滑块scroll-view

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容