我有一个名为邀请的formArray,
this.userInviteForm = this.fb.group({
invites: this.fb.array([ this.buildInvite() ])
});
buildInvite(): FormGroup {
return this.fb.group({
userIdentifier: ['', [Validators.required, Validators.pattern(EMAILPHONE_REGEX)]],
roleId: ['', [Validators.required]]
});
}
如何向参与数组的userIdentifier
字段添加去抖时间,以便用户在模式验证错误发生之前有一些时间。
答案 0 :(得分:0)
我正在调查同一问题,发现在角度为6.1.0的情况下,我不需要去弹子,请查看以下实现:https://stackblitz.com/edit/angular-reactive-form-playground?file=src/app/app.component.ts
您将看到验证已发生,但是状态不是无效的。