我用leancloud做後台,以leancloud的demo為例,如果在Todo中一共有10個數據,請問如何限制頁面先加載5個,用戶滑到底部後再加載後5個數據
代言2017-06-26 10:59:56
用分頁實現
呼叫:scroll-view :https://mp.weixin.qq.com/debu...
<scroll-view style="height:500rpx;" scroll-y="true" bindscrolltoupper="loadNew" bindscrolltolower="loadMore">
<block wx:for="{{items}}">
<view class="section">
<video src="{{item.videoUrl}}" controls></video>
<text>{{item.title}}</text>
</view>
</block>
</scroll-view>
也可以用:onReachBottom
Page({
onReachBottom: function()
{
this.loadList();
}
})