该事件未触发。找不到原因

时间:2018-07-25 18:31:15

标签: angular angularjs-directive angular-reactive-forms

@Directive({
  selector: "[sdScrollBottom]"
})
export class ScrollBottomDirective {
  @Output() onUserScroll: EventEmitter<any> = new EventEmitter();

  constructor(
    private elementRef: ElementRef
  ) {
  }

  @HostListener("touchmove", ["$event"])
  @HostListener("scroll", ["$event"]) onStart(event) {
    this.onUserScroll.emit(event);
  }
}
  

这是自定义指令的代码。该事件未触发。

1 个答案:

答案 0 :(得分:1)

尝试这样的事情,

import { Directive, HostListener, ElementRef, Input, Output, EventEmitter } from "@angular/core";
import * as $ from 'jquery';

@Directive({
    selector: '[scrollBottom]'
})
export class ScrollBottomDirective
{
    @Output() scrollEnd:EventEmitter<boolean> = new EventEmitter<boolean>();

    scrl_top:string;
    client_height:string;
    scrl_height:string;

    constructor(
        public el: ElementRef
    )
    {}

    @HostListener('scroll')
    scroll()
    {
        this.scrl_top = this.el.nativeElement.scrollTop;
        this.client_height = this.el.nativeElement.clientHeight;
        this.scrl_height = this.el.nativeElement.scrollHeight;

        // console.log('s top ', this.scrl_top, ' client height ', this.client_height, ' scrl - height ', this.scrl_height)
        if((this.scrl_top+this.client_height) === this.scrl_height)
        {
            if(this.scrollEnd) {
                this.scrollEnd.emit(true);
            }
        }
    }
}
相关问题