我在Angular6中编写一个系统。系统使用表单,用FormGroup
.
问题:如何在初始化后扩展表单?
例子:
ngOnInit() {
this.form = new FormGroup({
'field_1': new FormControl(null),
'field_2': new FormControl(null)});
if (a == 'some value') {
// Extend this.form with field_2 and field_3
}
}