關於前端自主實現列表渲染懶載入
阿新 • • 發佈:2021-01-29
技術標籤:技術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 }) }
–大寶