我还是angularJS的新手。自从我被阻止并无法找到解决方案以来已经过了好几个小时。有人可以帮帮我吗?
这是我的代码:
<table>
<tbody>
<tr class="main-heading">
<th>Images</th>
<th class="long-txt">Descriptif du produit</th>
<th>Numero de serie</th>
<th>Prix</th>
</tr>
<tr class="cake-bottom" data-ng-repeat="productI in chosenPdtByQte track by $index" >
<td class="cakes">
<div class="product-img2"></div>
</td>
<td class="cake-text">
<div style="color: #0c517d;">
{{productI.nameProduct}} {{productI.id}} {{numSeries.listNumSeries}}
<!-- <p>Garantie: {{productI.model.garantie}}</p> -->
</div>
</td>
<td><select name="singleSelect"data-ng-init="fetchNumSerie(productI.id)"data-ng-model="selectedNumSerie[productI.num]" data-ng-options="pdt as pdt for pdt in numSeries.listNumSeries" data-ng-change="saveProduct(productI.num)">
</select></td> {{pdt}}
<td>
<h4>{{productI.price}}</h4>
</td>
</tr>
</tbody>
</table>
问题是我试图在选择字段中显示numSeries
的列表,但我只获取相对于chosenPdtByQte
的最后一个元素的最后一个列表。< / p>
任何人都可以帮助我!!