Angular 5 Reactive Forms,在FormArray

时间:2018-03-21 13:41:06

标签: angular5 angular-reactive-forms angular-forms reactive-forms

我有一个名为邀请的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字段添加去抖时间,以便用户在模式验证错误发生之前有一些时间。

1 个答案:

答案 0 :(得分:0)

我正在调查同一问题,发现在角度为6.1.0的情况下,我不需要去弹子,请查看以下实现:https://stackblitz.com/edit/angular-reactive-form-playground?file=src/app/app.component.ts

您将看到验证已发生,但是状态不是无效的。