uni-app滚动视图容器(scroll-view)之监听上拉事件

实现

现在要实现一个功能。一个列表,上加载更多数据。页面如下。

uni-app滚动视图容器(scroll-view)之监听上拉事件

  因此,可滚动视图区域。滚动区域页面展示思路如下:

<scroll-view scroll-y="true" @scrolltolower="scroll"  style="height: 100vh;">
    <!-- uni-list列表 -->
    <!-- uni-load-more 滚动条 -->
    <!-- 注:需要设置滚动条高度 -->
</scroll-view>

其中,scroll为上拉事件的方法,请根据实际情况引用。

methods: {
    scroll() {
        console.log("加载列表的方法")
    }
}

参考网址

  • https://uniapp.dcloud.io/component/scroll-view
  • https://blog.csdn.net/weixin_45805132/article/details/110927978

 

uni-app滚动视图容器(scroll-view)之监听上拉事件

上一篇:linux 内核优化样例


下一篇:[Axure RP 9]怎么让鼠标移动到某元件上变成小手