如何检测离子4离子含量成分中的滚动到达终点?

时间:2019-07-04 10:57:07

标签: angular scroll ionic4 ion-content

在Ionic v3离子含量中,存在诸如“ scrollTop”之类的属性。在Ionic v4中,不再有此属性...如何确定用户是否到达内容结尾?

https://ionicframework.com/docs/v3/api/components/content/Content/ https://ionicframework.com/docs/api/content

2 个答案:

答案 0 :(得分:0)

这些功能仍然可用,它们位于不同的位置。

通过scrollEvents启用它后,您需要使用ionScroll事件,然后根据getScrollElement()函数而不是ion-content的结果来计算高度-具有固定的窗口高度高度。

我在下面写了一个例子。您可以删除console.log并将其收紧一点,我只是留在其中以帮助您了解发生了什么。

示例页面:

<ion-header>
  <ion-toolbar>
    <ion-title>detectScrollToBottom</ion-title>
  </ion-toolbar>
</ion-header>

<ion-content [scrollEvents]="true" (ionScroll)="logScrolling($event)">
  <p *ngFor="let dummy of ' '.repeat(75).split('')">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quia placeat nam sapiente iusto eligendi</p>
</ion-content>

示例代码:

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-detect-scroll-to-bottom',
  templateUrl: './detect-scroll-to-bottom.page.html',
  styleUrls: ['./detect-scroll-to-bottom.page.scss'],
})
export class DetectScrollToBottomPage implements OnInit {

  private scrollDepthTriggered = false;

  constructor() { }

  ngOnInit() {
  }

  async logScrolling($event) {
    // only send the event once
    if(this.scrollDepthTriggered) {
      return;
    }

    console.log($event);

    if($event.target.localName != "ion-content") {
      // not sure if this is required, just playing it safe
      return;
    }

    const scrollElement = await $event.target.getScrollElement();
    console.log({scrollElement});

    // minus clientHeight because trigger is scrollTop
    // otherwise you hit the bottom of the page before 
    // the top screen can get to 80% total document height
    const scrollHeight = scrollElement.scrollHeight - scrollElement.clientHeight;
    console.log({scrollHeight});

    const currentScrollDepth = $event.detail.scrollTop;
    console.log({currentScrollDepth});

    const targetPercent = 80;

    let triggerDepth = ((scrollHeight / 100) * targetPercent);
    console.log({triggerDepth});

    if(currentScrollDepth > triggerDepth) {
      console.log(`Scrolled to ${targetPercent}%`);
      // this ensures that the event only triggers once
      this.scrollDepthTriggered = true;
      // do your analytics tracking here
    }
  }

}

示例日志:

example log output

答案 1 :(得分:0)

记住使用滚动事件可能会导致性能问题。

您没有说您使用的是哪种编程环境,但是通过vue,您可以在ion-content上设置一个ref,然后访问shadowroot的第一个子元素,例如获取/设置clientHeight和所有其他JavaScript元素。 。当然,随着版本的更改,这些“隐藏”的内容可能会更改。

this.$refs.msg_list.shadowRoot.children[0].clientHeight