最佳答案
下面的脚本使用 ng-repeat
显示一个购物车。对于数组中的每个元素,它显示项目名称、数量和小计(product.price * product.quantity
)。
计算重复元素总价格的最简单方法是什么?
<table>
<tr>
<th>Product</th>
<th>Quantity</th>
<th>Price</th>
</tr>
<tr ng-repeat="product in cart.products">
<td>{{product.name}}</td>
<td>{{product.quantity}}</td>
<td>{{product.price * product.quantity}} €</td>
</tr>
<tr>
<td></td>
<td>Total :</td>
<td></td> <!-- Here is the total value of my cart -->
</tr>
</table>