最佳答案
A FormGroup aggregates the values of each child FormControl into one object, with each control name as the key.
const form = new FormGroup({
first: new FormControl('Nancy', Validators.minLength(2)),
last: new FormControl('Drew')
});
A FormArray aggregates the values of each child FormControl into an array.
const arr = new FormArray([
new FormControl('Nancy', Validators.minLength(2)),
new FormControl('Drew')
]);
When should one be used over the other?