无限加载的两种处理 2021年2月18日08:59:41 发表评论 利用scroll-view组件自带的滑到底部触发函数 利用page函数上拉触底onReachBottom 第一种 <scroll-view bindscrolltolower="scrollBottom"></scroll-view> Page({ scrollBottom:function(){ console.log('滚动到底部了'); } }) 第二种 Page({ onReachBottom:function(){ console.log('滚动到底部了'); } })