用分页实现调用: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(); } })
用分页实现
调用:scroll-view :https://mp.weixin.qq.com/debu...
也可以用:onReachBottom