在Angular 7中,自定义验证器可以通过实现Validator
接口来创建。为了解决自定义验证器永远无效的问题,你可以按照以下步骤进行操作:
import { AbstractControl, ValidatorFn } from '@angular/forms';
export function customValidator(): ValidatorFn {
return (control: AbstractControl): { [key: string]: any } | null => {
// 在这里编写你的验证逻辑
// 如果验证失败,返回一个错误对象,否则返回null
};
}
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { customValidator } from './custom-validator';
@Component({
// ...
})
export class YourComponent implements OnInit {
form: FormGroup;
constructor(private formBuilder: FormBuilder) {}
ngOnInit() {
this.form = this.formBuilder.group({
// ...
fieldName: ['', [Validators.required, customValidator()]]
});
}
}
在上面的示例中,我们将自定义验证器函数customValidator
添加到fieldName
字段的验证器数组中。
formControlName
指令来获取表单控件,并根据控件的验证状态显示错误消息。
错误消息
在上面的示例中,我们使用*ngIf
指令检查控件是否具有名为customValidator
的错误,并使用touched
属性检查控件是否被触摸过。
通过按照上述步骤创建和使用自定义验证器,你应该能够解决Angular 7中自定义验证器永远无效的问题。
上一篇:Angular 7的元标签