Как я могу установить ввод цены для выбранного продукта? я получил только цену последнего выбранного продукта во всех входных ценах
Снимок экрана внизу
Есть идеи? Думает
в файле TS
test(a) {
this.productService.getProduct(a).subscribe(res =>
this.orderList.forEach(value => value.productPrice = res.unitPrice));
// console.log(a);
}
в html
<div class="form-row" *ngFor="let obj of orderList; let i=index">
<div class="form-group col-md-2">
<label>Price</label>
<input type="number" [(ngModel)]="obj.productPrice" class="form-control" name="price{{i}}">
</div>