关于最新版本的 bindscrolltolower
现在版本中 scroll-view 的 bindscrolltolower="lower"事件,当滚动条滚动到最底部的时候 lower()会执行多次,以前的版本没问题,最近发现存在此问题。测试代码如下:
【wxml】
<scroll-view scroll-y=“true” style=“height: 200px;” bindscrolltolower=“lower” >
<view style=“width:100%;height:800rpx;background-color:red”></view>
</scroll-view>
【js】
var a =1
Page({
data:{
},
onLoad:function(options){
// 生命周期函数–监听页面加载
},lower: function() { //下拉加载
a=a+1
console.log(a)
}
})
当下拉到底部时,lower()会执行多次,次数不固定。