1. 程式人生 > 其它 >關於前端自主實現列表渲染懶載入

關於前端自主實現列表渲染懶載入

技術標籤:技術javascript前端

關於前端自主實現列表渲染懶載入

直接上程式碼

<scroll-view scroll-y bindscroll="scroll" bindscrolltolower="toLower">
<block wx:for="{{arr}}" wx:key="index" wx:if="{{index<currentIndex*10}}" >
 </block>
</scroll-view>


js:
toLower(){
	let currentIndex = this.data.currentIndex + 1
	this.setData({
	currentIndex 
	})
}
	

–大寶