初始化组件后,我试图在输入字段中选择一些文本。我知道我可以用 a 来做到这一点setTimeout()
,但这感觉有点太老套了。
大多数钩子在输入文本被双向绑定加载之前运行。每次有人选择其他字段时,其他人也会运行。
代码:https ://stackblitz.com/edit/angular-pxrssq
import { Component, OnInit, Input, ViewChild } from '@angular/core';
@Component({
selector: 'app-child',
template: `
<input #input type="text" [(ngModel)]="info.one"/>
<input type="text" [(ngModel)]="info.two"/>`,
styleUrls: ['./child.component.css']
})
export class ChildComponent implements OnInit {
@Input() info;
@ViewChild('input', {static: true} ) input;
constructor() { }
ngOnInit() {
this.input.nativeElement.select();
}
}
是否有一个生命周期钩子在组件初始化之后运行一次,但在加载双向绑定之后?