我正在使用Angular的購物車上工作,在此過程中我遇到了有關計算的問題。在角度視圖上的調整
在我的情況我有代碼類似
<label>No. of item</label>
<div>{{totalItems}}</div>
<div ng-repeat="cartElement in currentCartDetails.cartElements">
<span>{{cartElement.productName}}</span>
<span>{{cartElement.productCode}}</span>
<span>{{cartElement.productPrice}}</span>
<span>{{cartElement.quantity}}</span>
</div>
我想要什麼,添加像
totalItems += cartElement.quantity
我知道所有的東西有這麼多的選項,以顯示值 如。使用從服務器端計算,迭代計算到控制器
但我在尋找什麼,當我在視圖頁上迭代對象時,有什麼方法可以在那裏計算並獲得拖拽方式的好處。
非常感謝,爲了減少控制器迭代的一個步驟,我忘記了這個過程。 – Sach