问题描述:
在Angular Material 10中,使用matInput时,调用setErrors方法无效。
解决方法:
要解决这个问题,你可以使用以下步骤:
import { ViewChild } from '@angular/core';
import { MatInput } from '@angular/material/input';
@Component({
// ...
})
export class MyComponent {
@ViewChild('myInput') myInput: MatInput;
setError() {
this.myInput.setErrors({ customError: true });
}
}
这样,调用setErrors方法时,将会在matInput上设置一个错误,并触发错误状态的相关样式。
希望这个解决方法对你有帮助!