要在Angular 8/9中以编程方式设置MatInput的焦点,可以使用@ViewChild装饰器来获取对MatInput的引用,并在适当的时候调用focus()方法。以下是一个示例:
import { Component, ViewChild, AfterViewInit } from '@angular/core';
import { MatInput } from '@angular/material/input';
@Component({
selector: 'app-your-component',
templateUrl: './your-component.component.html',
styleUrls: ['./your-component.component.css']
})
export class YourComponentComponent implements AfterViewInit {
@ViewChild('inputRef', { static: false }) inputElement: MatInput;
ngAfterViewInit() {
// 在视图初始化之后,调用focus()方法以设置焦点
this.inputElement.focus();
}
}
在上面的示例中,我们使用@ViewChild装饰器获取了对MatInput的引用,并在ngAfterViewInit()生命周期钩子中调用了focus()方法来设置焦点。
请注意,{ static: false }选项是必需的,因为我们在ngAfterViewInit()中获取了对MatInput的引用。