在Angular 9.0中,可以使用FormGroup和FormArray来处理动态表格中的行删除操作。下面是一个示例解决方案:
在组件的模板中,定义一个formGroup来包含一个formArray,并在表格中循环显示formArray中的数据:
在组件的代码中,初始化formGroup和formArray,并实现addRow和removeRow方法:
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormArray, FormBuilder } from '@angular/forms';
@Component({
selector: 'app-your-component',
templateUrl: './your-component.component.html',
styleUrls: ['./your-component.component.css']
})
export class YourComponentComponent implements OnInit {
form: FormGroup;
constructor(private fb: FormBuilder) { }
ngOnInit() {
this.form = this.fb.group({
rows: this.fb.array([])
});
}
get rows() {
return this.form.get('rows') as FormArray;
}
addRow() {
const row = this.fb.group({
name: '',
age: ''
});
this.rows.push(row);
}
removeRow(index: number) {
this.rows.removeAt(index);
}
}
以上代码中,通过调用this.rows.push(row)将新行添加到formArray中,通过this.rows.removeAt(index)从formArray中删除指定索引的行。
这样,当点击"Add Row"按钮时,将会添加一行到表格中,并且每一行都有一个"Remove"按钮,点击该按钮将会删除对应的行。