44

我正在尝试在 Angular 中构建一个简单的计算器,如果需要,我可以在其中覆盖总数。我有这部分工作,但是当我返回在字段一或二中输入数字时,字段中的总数没有更新。

这是我的 jsfiddle http://jsfiddle.net/YUza7/2/

表格

<div ng-app>
  <h2>Calculate</h2>

  <div ng-controller="TodoCtrl">
    <form>
        <li>Number 1: <input type="text" ng-model="one">  
        <li>Number 2: <input type="text" ng-model="two">
        <li>Total <input type="text" value="{{total()}}">       
        {{total()}}
    </form>
  </div>
</div>

javascript

function TodoCtrl($scope) {
    $scope.total = function(){
        return $scope.one * $scope.two;
    };
}
4

5 回答 5

40

您可以将ng-change指令添加到输入字段。看看文档示例

于 2012-10-02T11:50:21.690 回答
28

我猜当您在总计字段中输入一个值时,该值表达式会以某种方式被覆盖。

但是,您可以采用另一种方法:为总值创建一个字段,并在其中一个onetwo更改时更新该字段。

<li>Total <input type="text" ng-model="total">{{total}}</li>

并更改javascript:

function TodoCtrl($scope) {
    $scope.$watch('one * two', function (value) {
        $scope.total = value;
    });
}

示例小提琴在这里

于 2012-10-02T09:23:23.707 回答
5

我编写了一个指令,您可以使用它来将 ng-model 绑定到您想要的任何表达式。每当表达式更改时,模型都会设置为新值。

 module.directive('boundModel', function() {
      return {
        require: 'ngModel',
        link: function(scope, elem, attrs, ngModel) {
          var boundModel$watcher = scope.$watch(attrs.boundModel, function(newValue, oldValue) {
            if(newValue != oldValue) {
              ngModel.$setViewValue(newValue);
              ngModel.$render();
            }
          });

          // When $destroy is fired stop watching the change.
          // If you don't, and you come back on your state
          // you'll have two watcher watching the same properties
          scope.$on('$destroy', function() {
              boundModel$watcher();
          });
        }
    });

您可以像这样在模板中使用它:

 <li>Total<input type="text" ng-model="total" bound-model="one * two"></li>      
于 2015-05-06T01:04:33.483 回答
3

你只需要更正你的html格式

<form>
    <li>Number 1: <input type="text" ng-model="one"/> </li>
    <li>Number 2: <input type="text" ng-model="two"/> </li>
        <li>Total <input type="text" value="{{total()}}"/>  </li>      
    {{total()}}

</form>

http://jsfiddle.net/YUza7/105/

于 2013-03-25T09:56:58.970 回答
-3

创建一个指令并对其进行监视。

app.directive("myApp", function(){
link:function(scope){

    function:getTotal(){
    ..do your maths here

    }
    scope.$watch('one', getTotals());
    scope.$watch('two', getTotals());
   }

})

于 2013-02-16T00:30:20.347 回答