在Angular中,可以通过使用FormArray和FormGroup来实现响应式表单,以便在移除元素时仍然进行验证。下面是一个示例代码:
首先,创建一个FormGroup来表示整个表单:
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormControl, Validators, FormArray } from '@angular/forms';
@Component({
selector: 'app-form',
templateUrl: './form.component.html',
styleUrls: ['./form.component.css']
})
export class FormComponent implements OnInit {
form: FormGroup;
ngOnInit() {
this.form = new FormGroup({
items: new FormArray([])
});
}
get items(): FormArray {
return this.form.get('items') as FormArray;
}
addItem() {
const item = new FormGroup({
name: new FormControl('', Validators.required),
quantity: new FormControl('', Validators.required)
});
this.items.push(item);
}
removeItem(index: number) {
this.items.removeAt(index);
}
}
然后,在HTML模板中使用FormArray来渲染表单和验证错误信息:
在上面的代码中,我们使用FormArray来表示表单中的多个项目,并使用formGroupName和formControlName来绑定每个项目的FormControl。在移除元素时,调用removeAt方法来从FormArray中删除相应的FormGroup。
这样,当移除元素时,Angular仍然会对剩余的元素进行验证,并在表单提交时显示错误信息。