Как получить nativeElement из @ViewChild в Ionic 4 / Angular7? - PullRequest
0 голосов
/ 15 ноября 2018

Я использую ионный поиск Ionic 4 так:

     <ion-searchbar
            #searchbarElem
            (ionInput)="getItems($event)"
            (tap)="handleTap($event)"
            [(ngModel)]="keyword"
            (ngModelChange)="updateModel()"
            [cancelButtonText]="options.cancelButtonText == null ? defaultOpts.cancelButtonText : options.cancelButtonText"
            [showCancelButton]="options.showCancelButton == null ? defaultOpts.showCancelButton : options.showCancelButton"
            [debounce]="options.debounce == null ? defaultOpts.debounce : options.debounce"
            [placeholder]="options.placeholder == null ? defaultOpts.placeholder : options.placeholder"
            [autocomplete]="options.autocomplete == null ? defaultOpts.autocomplete : options.autocomplete"
            [autocorrect]="options.autocorrect == null ? defaultOpts.autocorrect : options.autocorrect"
            [spellcheck]="options.spellcheck == null ? defaultOpts.spellcheck : options.spellcheck"
            [type]="options.type == null ? defaultOpts.type : options.type"
            [disabled]="disabled"
            [ngClass]="{'hidden': useIonInput}"
            (ionClear)="clearValue(true)"
            (ionFocus)="onFocus()"
            (ionBlur)="onBlur()"
    >
    </ion-searchbar>

При нажатии я запускаю следующее из компонента:

@HostListener('document:click', ['$event'])
private documentClickHandler(event) {
    if ((this.searchbarElem
            && !this.searchbarElem._elementRef.nativeElement.contains(event.target))
        ||
        (!this.inputElem && this.inputElem._elementRef.nativeElement.contains(event.target))
    ) {
        this.hideItemList();
    }
}

Однако я получаю следующую ошибку:

ERROR TypeError: Cannot read property 'nativeElement' of undefined

Я попытался установить тайм-ауты и объявить searchbarElem как ElementRef, но безуспешно.

Я знаю, это работало в Angular 2 / Ionic 2, но сейчас это не так. Что-то изменилось, или тень влияет на вещи? Любая помощь будет оценена, спасибо.

1 Ответ

0 голосов
/ 15 ноября 2018

Вы должны использовать ViewChild со свойством метаданных read: ElementRef:

@ViewChild("searchbarElem", { read: ElementRef }) private searchbarElem: ElementRef;

и получить доступ к элементу HTMLE с помощью this.searchbarElem.nativeElement:

@HostListener('document:click', ['$event'])
private documentClickHandler(event) {
    console.log(this.searchbarElem.nativeElement);
}

См. этот стек для демонстрации (см. Код на домашней странице).

...