如何在项目添加到数组时对数组求和。我有一个动态表,允许用户选择表中的行数。每行都有1到10个数字的输入。每个输入都添加到具有以下功能的数组
$scope.redRoundScore = [];
$scope.updateRedScore = function(passedscore, index){
$scope.redRoundScore[index] = passedscore
}
和HTML
<input required="" ng-change="updateRedScore(inputValueRed, $index)" ng-model="inputValueRed" type="number" step="1" name="rate" min="1" max="10">
我已尝试将此功能更改为此功能但似乎无效。
$scope.updateRedScore = function(passedscore, index){
$scope.redRoundScore[index] = passedscore
$scope.redScoreSum = redRoundScore.reduce((p,c) => p + c);
}
我想在用户输入每行的数字时动态计算总和,并将总和绑定到表格底部的另一个单元格。