<scroll-view scroll-y="{{true}}" style=“height:567px;” bindscrolltolower=“upload” >
</scroll-view>
js:
data:{
page:‘0’,
aGoodsData:’’
}
…
upload:function(){
wx.request({
url: Url,
method: ‘POST’,
data: {
page:this.data.page+1
},
method: ‘POST’, // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
success: function(res){
// success
console.log(res)
this.data.setData({
aGoodsData:res.data,
page:this.data.page+1
})
},
fail: function() {
// fail
},
complete: function() {
// complete
}
})
}
每次滚动到底部的时候 偶尔会 多次 请求 一般是重复 2次 3次的 ,page 都是同一个值