• 分页请求下一条数据


    分页获拉取下一页数据

    function loadNextPageData(self, callball) {
      if (window.IntersectionObserver) {
        const options = {
          root: null,
          threshold: 0
        }
        const handleIntersect = (entries, observer) => {
          entries.forEach(async (entry) => {
            if (entry.isIntersecting || entry.intersectionRatio || entry.isIntersecting === undefined) {
              self.requesting = true
              if (self.requesting && self.count > 0) {
                self.requesting = false
                self.pageIndex += 1
                await callball(self.pageIndex)
                self.requesting = true
              } else {
                self.isLoading = true // 不显示
                self.noMore = true // 加载到最后一页无数据了
                observer.unobserve(entry.target)
              }
            }
          })
        }
        const observer = new IntersectionObserver(handleIntersect, options)
        if (!self.isLoading) observer.observe(self.$refs.loading.$el.firstChild)
      }
    }
  • 相关阅读:
    微信小程序 生命周期
    ftp uploadFileAction(重要)
    java FTP 上传下载删除文件
    httpsession
    db2 blob EMPTY_BLOB()
    java blob
    java session getCreationTime()
    eclipse 查看源代码
    java file类
    Vue.js 和 MVVM 小细节
  • 原文地址:https://www.cnblogs.com/restart77/p/12336361.html
Copyright © 2020-2023  润新知