问题描述: 在Angular中,当使用mat-radio-group时,无法渲染工作的formArray。
解决方法:
确保正确导入所需的Angular Material模块和FormsModule。
在组件的HTML模板中,使用formGroupName指令来引用formArray的控件组。
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormBuilder, FormArray } from '@angular/forms';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponentComponent implements OnInit {
myForm: FormGroup;
radioItems = [
{ label: 'Option 1', value: 'option1' },
{ label: 'Option 2', value: 'option2' },
{ label: 'Option 3', value: 'option3' }
];
constructor(private fb: FormBuilder) { }
ngOnInit() {
this.myForm = this.fb.group({
radioOptions: this.fb.array([])
});
this.addRadioOptions();
}
addRadioOptions() {
const radioOptions = this.myForm.get('radioOptions') as FormArray;
this.radioItems.forEach((item) => {
radioOptions.push(this.fb.control(''));
});
}
}
通过以上步骤,您应该能够正确渲染工作的mat-radio-group,并使用formArray来动态添加和管理选项。