问题
I am trying to validate input fields inside a table using form group but unable to achieve the same. I am using *ngFor to iterate the data because I have to display that data in the first column of the table and other columns are just input text fields in which I have to add form validation. So I have added the index for the unique form control name for the field.
HTML code
<form [formGroup]="tableForm">
<table class="shop-table table-responsive" cellspacing="0">
<tbody>
<tr class="cart_item" *ngFor="let data of final_selected_data; let i= index;">
<td class="product-thumbnail">
<a href="#"><img src="assets/images/nike.jpg" alt="" width="100"></a>
</td>
<td class="product-name">
<a href="#">{{data.size_ui}} ({{data.color_ui}}, {{data.material_ui}})</a> </td>
<td class="product-quantity" data-title="SKU">
<div class="quantity buttons_added">
<input step="1" value="" title="SKU" class="text" size="6" type="text" placeholder="SKU*" style="width:80px;" matInput [formControl]="tableForm.controls['variant_sku'+i]">
</div>
</td>
<td class="product-quantity" data-title="Price">
<div class="quantity buttons_added">
<input step="1" min="0" max="" value="" title="Price" class="text" size="6" type="number" placeholder="Price*" style="width:80px;" matInput [formControl]="tableForm.controls['variant_price'+i]">
</div>
</td>
<td class="product-remove">
<a href="#" class="remove" title="Remove this item"><mat-icon>delete</mat-icon></a>
</td>
</tr>
</tbody>
</table>
</form>
Component.ts
ngOnInit() {
for(let i = 0; i < this.final_selected_data.length; i++){
var j = (i).toString();
let variant_sku = 'variant_sku'+j;
let variant_price = 'variant_price'+j;
let variant_stock = 'variant_stock'+j;
let variant_moq = 'variant_moq'+j;
this.tableForm = this.fb.group({
variant_sku: [null, Validators.compose([Validators.required])],
variant_price: [null, Validators.compose([Validators.required])]
});
}
}
Error
ERROR Error: Cannot find control with unspecified name attribute
回答1:
What you are doing now, is only creating 2 form controls inside your form, no matter the length of your array. What you need, is a FormArray
to which you push new form groups for each object you have in your array... so a shortened version would be:
this.tableForm = this.fb.group({
arr: this.fb.array([])
})
let arr = this.tableForm.get('arr') as FormArray;
for (let i = 0; i < this.final_selected_data.length; i++) {
arr.push(this.fb.group({
variant_sku: [this.final_selected_data[i].variant_sku, [Validators.required]]
}))
}
Then in your template you iterate your formarray:
<form [formGroup]="tableForm">
<table>
<tbody formArrayName="arr">
<tr *ngFor="let a of this.tableForm.get('arr')['controls']; let i= index;">
<td class="product-quantity" [formGroupName]="i">
<input formControlName="variant_sku">
<!-- not pretty, but just for demonstration! -->
<p *ngIf="a.hasError('required', 'variant_sku')">Required!</p>
</td>
</tr>
</tbody>
</table>
</form>
DEMO: https://stackblitz.com/edit/angular-vcjjfr?file=src%2Fapp%2Fapp.component.html
来源:https://stackoverflow.com/questions/51599143/angular-5-dynamic-form-validation-inside-a-table