创建一个指令以启用对输入字段的关注
create a directive to enable focus on input fields
我尝试在我的应用程序的许多输入中激活焦点。与其复制代码,我想我会创建一个自定义指令,但我做不到。
如果有人可以帮助我..
这是我的错误代码:
指令:
import { AfterViewInit, Directive, ElementRef, ViewChild } from '@angular/core';
@Directive({
selector: '[appFocus]'
})
export class FocusDirective implements AfterViewInit {
@ViewChild('zone') zoneInput: ElementRef;
constructor() { }
ngAfterViewInit() {
this.zoneInput.nativeElement.focus();
}
}
在模板中:
<div>
<mat-form-field class="example-full-width" appearance="fill">
<mat-label>Saisie code barre</mat-label>
<input appFocus matInput formControlName="barcode" placeholder="EAN...">
</mat-form-field>
</div>
非常感谢
你很接近!
constructor(private el: ElementRef) {}
ngAfterViewInit(): void {
this.el.nativeElement.focus();
}
您需要实际传入元素,以便您可以访问要关注的本机元素,而不是 zoneInput。您可能需要也可能不需要包装在 setTimeout 中,但这应该可以满足您的需求。
我尝试在我的应用程序的许多输入中激活焦点。与其复制代码,我想我会创建一个自定义指令,但我做不到。 如果有人可以帮助我.. 这是我的错误代码: 指令:
import { AfterViewInit, Directive, ElementRef, ViewChild } from '@angular/core';
@Directive({
selector: '[appFocus]'
})
export class FocusDirective implements AfterViewInit {
@ViewChild('zone') zoneInput: ElementRef;
constructor() { }
ngAfterViewInit() {
this.zoneInput.nativeElement.focus();
}
}
在模板中:
<div>
<mat-form-field class="example-full-width" appearance="fill">
<mat-label>Saisie code barre</mat-label>
<input appFocus matInput formControlName="barcode" placeholder="EAN...">
</mat-form-field>
</div>
非常感谢
你很接近!
constructor(private el: ElementRef) {}
ngAfterViewInit(): void {
this.el.nativeElement.focus();
}
您需要实际传入元素,以便您可以访问要关注的本机元素,而不是 zoneInput。您可能需要也可能不需要包装在 setTimeout 中,但这应该可以满足您的需求。