Angular Material的ErrorStateMatcher可以检测到父表单提交时的状态。
下面是一个示例代码,展示了如何使用ErrorStateMatcher来检测父表单提交时的状态:
import { Component } from '@angular/core';
import { FormControl, FormGroupDirective, NgForm, Validators } from '@angular/forms';
import { ErrorStateMatcher } from '@angular/material/core';
// 自定义的ErrorStateMatcher
export class MyErrorStateMatcher implements ErrorStateMatcher {
isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {
// 检查父表单是否正在提交
const isSubmitted = form && form.submitted;
// 检查控件是否无效且不是只读状态
return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted));
}
}
@Component({
selector: 'app-my-form',
templateUrl: './my-form.component.html',
styleUrls: ['./my-form.component.css']
})
export class MyFormComponent {
emailFormControl = new FormControl('', [
Validators.required,
Validators.email,
]);
matcher = new MyErrorStateMatcher();
}
在上面的代码中,我们创建了一个自定义的ErrorStateMatcher类MyErrorStateMatcher
,它实现了ErrorStateMatcher
接口。MyErrorStateMatcher
类中的isErrorState
方法用于检测控件的状态是否为错误状态。
然后,在组件中,我们创建了一个FormControl对象emailFormControl
,并将自定义的ErrorStateMatcher对象matcher
赋值给FormControl对象的errorStateMatcher
属性。
最后,在模板中,我们可以像下面这样使用FormControl对象和ErrorStateMatcher对象:
在上面的示例中,我们在input元素上绑定了FormControl对象,并使用hasError
方法来检查FormControl对象的错误状态。当父表单提交时,ErrorStateMatcher对象会根据FormControl对象的状态来判断是否显示错误消息。
通过上述代码示例,我们可以使用Angular Material的ErrorStateMatcher来检测父表单提交时的状态。