小程序 scroll-view 无法触发 onReachBottom 解决办法

Posted iblackly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序 scroll-view 无法触发 onReachBottom 解决办法相关的知识,希望对你有一定的参考价值。

<scroll-view bindscrolltolower="YourFunction" lower-threshold=“50”></scroll-view>

 

1 YoourFunction(){
2     console.log("触底了");
3     wx.showToast({
4       title: ‘加载中...‘,
5       icon: ‘loading‘,
6       duration: 2000
7     })
8 }

 

bindscrolltolower eventhandle  滚动到底部/右边时触发

lower-threshold number/string 距底部/右边多远时,触发 scrolltolower 事件

文档:https://developers.weixin.qq.com/miniprogram/dev/component/scroll-view.html

 

以上是关于小程序 scroll-view 无法触发 onReachBottom 解决办法的主要内容,如果未能解决你的问题,请参考以下文章

小程序scroll-view的bindscroll在真机上不触发的解决方案?

小程序下拉刷新

uni-app中scroll-view中无法滚动的问题

关于小程序 scroll-view 左右横向滑动没有效果(无法滑动)问题

关于小程序 scroll-view 左右横向滑动没有效果(无法滑动)问题

微信小程序 scroll-view内容怎么默认滚到底部