I'm confused on how would i get the value of material.sku in these arrays of objects? This is what i have tried below.
html
<td>
<select formControlName="material_id" class="col-md-12">
<option *ngFor="let mat_order of mat_orders.materials" [ngValue]="mat_order.material_id">
{{ mat_order.sku}}
</option>
</select>
</td>
ts
.subscribe(
(data:any) => {
this.mat_orders = data.supplies;
console.log(mat_orders);
},
error => {
alert("Error");
console.log(error);
})
you should access the 0th index,
<select formControlName="material_id" class="col-md-12">
<option *ngFor="let mat_order of mat_orders[0].materials" [ngValue]="mat_order.material_id">
{{ mat_order.sku}}
</option>
</select>