我一直在尝试在 Angular 8 中创建一个自定义表单验证指令,我想知道是否可以在我的指令中访问 FormBuilder Validators 属性,例如Required/minLength/maxLength。
目前我正在通过手动设置 HTML 输入的最小/最大属性来处理输入的最小/最大值
// form.component.html
<form
customFormValidation // my directive
class="form"
[formGroup]="userForm"
(ngSubmit)="onSubmit()">
<div class="form-group">
<label class="input-label">Username</label>
<input
type="text"
minlength="5"
maxlength="10"
formControlName="username"
name="username"
class="form-control"/>
...
</form>
// form.component.ts
ngOnInit() {
this.userForm = this.fb.group({
username: [
"",
[
Validators.required,
Validators.minLength(5),
Validators.maxLength(10)
]
]
});
}
// customFormValidation.directive.ts
...
constructor(private renderer: Renderer2, private el: ElementRef) {}
@HostListener("submit", ["$event"])
onSubmit(e) {
e.preventDefault();
this.isSumbited = true;
for (const formInput of e.currentTarget.elements) {
// For the simplicity of the example just logging the
minLength value of each input in the form
console.log(formInput.value.minLength);
}
}
如上所示,我通过访问 html 中提供的属性来处理输入的最小/最大长度,但我真正想要的是从 FormBuilder Validators 访问最小/最大长度。
任何帮助表示赞赏。