vue 中监测滚动条加载数据(懒加载数据)

Posted dw3306

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 中监测滚动条加载数据(懒加载数据)相关的知识,希望对你有一定的参考价值。

vue 中监测滚动条加载数据(懒加载数据)

1:钩子函数监听滚动事件:

  mounted () {
    this.$nextTick(function () {
      window.addEventListener(‘scroll‘, this.onScroll)
    })
  },

 

2:

 methods: {
    // 获取滚动条当前的位置
    getScrollTop () {
      var scrollTop = 0
      if (document.documentElement && document.documentElement.scrollTop) {
        scrollTop = document.documentElement.scrollTop
      } else if (document.body) {
        scrollTop = document.body.scrollTop
      }
      return scrollTop
    },
    // 获取当前可视范围的高度
    getClientHeight () {
      var clientHeight = 0
      if (document.body.clientHeight && document.documentElement.clientHeight) {
        clientHeight = Math.min(document.body.clientHeight, document.documentElement.clientHeight)
      } else {
        clientHeight = Math.max(document.body.clientHeight, document.documentElement.clientHeight)
      }
      return clientHeight
    },

    // 获取文档完整的高度
    getScrollHeight () {
      return Math.max(document.body.scrollHeight, document.documentElement.scrollHeight)
    },
    // 滚动事件触发下拉加载
    onScroll () {
      if (this.getScrollHeight() - this.getClientHeight() - this.getScrollTop() <= 0) {
        if (this.status === 1) {
          this.status = 0
          // 页码,分页用,默认第一页
          this.deliverParams.page += 1
          // 调用请求函数
          alert(‘触发!!!‘)
        }
      }
    },
}

 

以上是关于vue 中监测滚动条加载数据(懒加载数据)的主要内容,如果未能解决你的问题,请参考以下文章

滚动条加载功能实现(懒加载)

QT内存数据大,懒加载向有滚动条的文本写入数据

Vue组件滚动加载懒加载功能的实现,无限滚动加载组件实例演示

uniapp/vue虚拟列表,数据列表渲染优化

vue-lazyload解决图片懒加载问题

ajax滚动条懒加载