我做了一個簡單的項目計算,其中我有項目價格,數量和標題存儲在一個數組中。我計算的總金額爲每個項目:
<div ng-controller="myctrl">
<table>
<tr ng-repeat="itms in items"><td>{{itms.title}} <input type="text" ng-model="itms.quantity"/>{{itms.price}} - {{totalprice}}</td></tr>
</table>
腳本
:
app.controller("myctrl", function($scope, $log) {
$scope.items= [
{title: 'Paint Pots', quantity: 8, price: 3.95},
{title: 'Polka Pots', quantity: 17, price: 6.95},
{title: 'Pebbles', quantity: 5, price: 12.95}
]
//$log.log($scope.items[0].title);
//totalprice=quantity*price
$scope.totalprice=0;
for(var i=0; i<$scope.items.length; i++){
$log.log($scope.items[i].price*$scope.items[i].quantity);
//console.log($scope.items[i].price * $scope.items[i].quantity);
$scope.totalprice = $scope.items[i].price * $scope.items[i].quantity;
}
///$scope.totalprice =
});
但問題是,它顯示了只有最後的{{totalprice}}計算值項目,而控制檯顯示每個項目的正確計算$log.log($scope.items[i].price*$scope.items[i].quantity);
請告訴我爲什麼在輸出它只顯示最後的計算。提前致謝。
因爲你重新計算和重新分配'$ scope.totalprice'價值,這就是爲什麼最後的值被分配到'$ scope.totalprice' –
OK,請給代碼解決方案。 – user3450590