在Angular 9中,可以使用以下步骤动态设置FormControlName为typescript变量:
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, FormControl } from '@angular/forms';
myForm: FormGroup;
myControl: FormControl;
constructor(private formBuilder: FormBuilder) {
this.myForm = this.formBuilder.group({
myControl: ''
});
this.myControl = this.myForm.get('myControl') as FormControl;
}
this.myControl.setValue('newControlName');
这样,当你调用this.myControl.setValue('newControlName')
时,FormControlName就会被动态设置为newControlName
。
注意:在使用FormControlName指令时,确保在组件的模板中有一个父级FormGroup。