Angularjs 动态文本字段并乘以两个字段

Angularjs Dynamic Text Fields and multiply two field

嗨,我有一个Json像这样

[
  {
    "id": 1,
    "name": "Furniture & Fixture",
    "choices": [
      {
        "req_goods": "",
        "qty": "10",
        "rate": "",
        "total": ""
      }
    ]
  },
  {
    "id": 2,
    "name": "Miscellaneous Property",
    "choices": [
      {
        "req_goods": "",
        "qty": "",
        "rate": "",
        "total": ""
      }
    ]
  },
  {
    "id": 3,
    "name": "Office Equipment",
    "choices": [
      {
        "req_goods": "",
        "qty": "",
        "rate": "",
        "total": ""
      }
    ]
  }
]

这里的选项是我的动态字段,用户可以根据需要添加任意多的选项,我的add/remove js是这样的

$scope.addNewChoice = function(id){
        $scope.capital_budgets[id].choices.push({});
    };
    $scope.removeChoice = function(parent_id,id) {      
        $scope.capital_budgets[parent_id].choices.splice(id,1);
      };

我的html

<div ng-repeat="cb in capital_budgets">
  <div><b><% $index+1 %> <% cb.name %></b></div>                  

  <div ng-repeat="choice in cb.choices">    
    <input type="text" ng-model="choice.req_goods">                 
    <input type="text" ng-model="choice.qty">
    <input type="text" ng-model="choice.rate">
    <input type="text" ng-model="choice.total">

   <button type="button" ng-hide="$first" ng-click="removeChoice($parent.$index,$index)">-</button>

  </div>
  <button type="button" ng-click="addNewChoice($index)">+</button>

</div>

现在我想计算每个添加的选项的总数(数量*率),只要他们把数量和费率放在总计字段中,请帮助

实现此目的的一种方法是在控制器中创建一个方法来进行计算,然后在 qtyrate 发生变化时调用它。

控制器:

$scope.updateTotal = function(choice) {
    if(!choice.qty || !choice.rate) {
        choice.total = 0;
    } else {
        choice.total = choice.qty * choice.rate;
    }
};

html:

<input type="text" ng-model="choice.qty" ng-change="updateTotal(choice)">
<input type="text" ng-model="choice.rate" ng-change="updateTotal(choice)">