微信小程序scroll-view上拉加载更多
1、wxml代码
<scroll-view class="scroll-view-container"
scroll-y
bindscrolltolower ="bindscrolltolowerFn"
scroll-top="{{scrollTop}}"
>
2、js代码
bindscrolltolowerFn: function(){
// getStuList为请求服务端数据方法
this.getStuList()
}
3、需要注意的是当前页面最外层元素的样式里要加上overflow:scroll 或者 overflow-y: scroll 否则scroll-view上的方法不起作用