uniapp實作捲動載入的方法:1、使用「onReachBottom(){console.log("...")}」方法;2、透過「
...」方法。
##本教學操作環境:windows7系統、uni-app2.5.1版本,Dell G3電腦。
推薦(免費):uni-app教學
onReachBottom(){ console.log("我已经滚动到底部了")}
<scroll-view scroll-y="true" @scrolltolower="lower()" :style="{height:scrollH+'rpx'}"> // 内容 </scroll-view>
methods:{ lower(e) { console.log("已经滚动到底部了") } }, computed:{ scrollH:function(){ let sys = uni.getSystemInfoSync(); let winWidth = sys.windowWidth; let winrate = 750/winWidth; let winHeight =parseInt(sys.windowHeight*winrate) return winHeight } }
以上是uniapp怎麼實現滾動加載的詳細內容。更多資訊請關注PHP中文網其他相關文章!