在Angular中,验证器通常是在模板驱动或反应式表单中使用的。验证器本身不会被销毁,但可以设置为在特定条件下失效。
下面是一个使用模板驱动表单的示例,其中包含一个自定义验证器:
import { Component } from '@angular/core';
import { FormControl, FormGroup, Validators } from '@angular/forms';
@Component({
selector: 'app-example',
template: `
`
})
export class ExampleComponent {
myForm: FormGroup;
constructor() {
this.myForm = new FormGroup({
myField: new FormControl('', [
Validators.required,
this.customValidator
])
});
}
customValidator(control: FormControl) {
if (control.value !== 'valid') {
return { customValidator: true };
}
return null;
}
}
在上面的示例中,我们创建了一个自定义验证器customValidator
,它检查表单控件的值是否为valid
。如果验证失败,该验证器将返回一个对象,其中包含一个customValidator
属性。如果验证通过,该验证器将返回null
。
注意,验证器本身不会被销毁。当表单控件的值更改时,验证器将被调用并重新评估。这意味着在每个表单控件的状态更改时,验证器都会被重新调用。
您可以根据需要在验证器中执行各种自定义逻辑,以满足您的验证需求。