で、それが宣言した後、あなたがsetValue
方法、またはpatchValue方法とFormControlまたはFormGroupを更新することができます更新バリFormControl
this.input = new FormControl('', Validators.required)
this.form = this.formBuilder.group({
input = this.input
})
this.input.update('', Validators.maxlength(20))
あなたが提案したようにsetValidatorsを使用しました。ありがとうございました –
私は助けてくれることを嬉しく思います! :) – Alex