使用了scroll-view标签onReachBottom上拉触底不触发,可以在标签里面加上这个事件 bindscrolltolower事件。
bindscrolltolower | eventhandle | 否 | 滚动到底部/右边时触发 |
<scroll-view class="list" scrollY="true" bindscrolltolower="Reachbottom"></scroll-view>
然后在js中调用这个方法,在里面写你要进行的操作:
Reachbottom: function(a) {
('触发了上拉触底事件')
}