我正在编写一个简单的控制器,它只进行很少的计算。这是一个具有更高级信息的真实项目的反映。 问题是结果,当作为表达式放在html上时,每次更改都会重新计算结果,但是,当我在$ scope中计算变量时,它不会更新。看到标记中的评论。
知道我在这里缺少什么吗?
标记
<body ng-app="myApp">
<div ng-controller="mainController">
<h3> Numbers </h3>
<label> a </label>
<input type="number" ng-model="numbers.a"/>
<label> b </label>
<input type="number" ng-model="numbers.b">
<br>
<br>
<span> Result : {{result}} {{numbers.a*numbers.b}} </span> // the first one does not update, but the second does.
<h3> Nums </h3>
<label> a </label>
<input type="number" ng-model="a1">
<label> b</label>
<input type="number" ng-model="b1">
<br>
Result2: {{result2}} {{a1+b1}}
<ul>
<li ng-repeat=" i in cool"> {{i}} </li>
</ul>
</div>
</body>
javascript:
angular.module('myApp',[])
.controller('mainController', ['$scope', function($scope) {
$scope.numbers = {a:11, b:10};
$scope.a1 = 5;
$scope.b1 = 7;
$scope.result = $scope.numbers.a*$scope.numbers.b;
$scope.result2 = $scope.a1 +$scope.b1 ;
$scope.cool = [$scope.result + $scope.result2,
$scope.result - $scope.result2]
}]);
答案 0 :(得分:2)
第一个变量result
没有更新,因为您的mainController
函数只会被评估一次 - 这是第一次使用angular解释html并首先发现表达式ng-controller="mainController"
为了让result
自动更新,您必须在控制器中设置 watch 侦听器,如下所示:
angular.module('myApp',[])
.controller('mainController', ['$scope', function($scope) {
// ...
$scope.$watch('[numbers.a, numbers.b]', function () {
$scope.result = $scope.numbers.a*$scope.numbers.b;
});
}]);
像{{numbers.a*numbers.b}}
这样的表达式会自动更新,因为angular会为那些设置监听侦听器。事实上,html中的表达式语法只是语法糖 - 在引擎盖下,angular只为它在html中找到的每个表达式调用相同的$watch
函数。
See the $watch documentation for more detail
我个人不喜欢使用上面提到的$watch
语法,因为它会使控制器膨胀。或者,您可以从您的html调用函数:
{{ calculateResult() }}
在控制器中,您将定义如下函数:
angular.module('myApp',[])
.controller('mainController', ['$scope', function($scope) {
// ...
$scope.calculateResult = function () {
return $scope.numbers.a*$scope.numbers.b;
};
}]);
旁注:如果您对性能感到担忧并且calculateResult()
功能非常慢,您可能希望坚持使用第一个版本。
答案 1 :(得分:1)
控制器中的计算仅在实例化控制器时执行,通常在显示相应视图时执行。您必须将计算封装在函数中(不需要$ watch):
$scope.result = function() {
return $scope.numbers.a * $scope.numbers.b;
}
$scope.result2 = function() {
return $scope.a1 + $scope.b1;
}
$scope.cool = function() {
return [
$scope.result() + $scope.result2(),
$scope.result() - $scope.result2()
];
}
并在您的视图中引用它:
<span> Result : {{result()}} {{numbers.a*numbers.b}} </span>
和
Result2: {{result2()}} {{a1+b1}}
和
<li ng-repeat=" i in cool(result, result2)"> {{i}} </li>
答案 2 :(得分:0)
当数字发生变化时,您需要手表重新计算结果的值。否则,result
的值仅计算一次
var app = angular.module('my-app', [], function() {})
app.controller('mainController', ['$scope',
function($scope) {
$scope.numbers = {
a: 11,
b: 10
};
$scope.a1 = 5;
$scope.b1 = 7;
//if a or b is changed recalculate result
$scope.$watch('[numbers.a, numbers.b]', function() {
$scope.result = $scope.numbers.a * $scope.numbers.b;
})
//if a1 or b1 is changed recalculate result2
$scope.$watch('[a1, b1]', function() {
$scope.result2 = $scope.a1 + $scope.b1;
})
//if result or result2 is changed recalculate cool
$scope.$watch('[result, result2]', function() {
$scope.cool = [$scope.result + $scope.result2,
$scope.result - $scope.result2
]
})
}
]);
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="my-app">
<div ng-controller="mainController">
<h3> Numbers </h3>
<label>a</label>
<input type="number" ng-model="numbers.a" />
<label>b</label>
<input type="number" ng-model="numbers.b" />
<br/>
<br/>
<span> Result : {{result}} {{numbers.a*numbers.b}} </span> // the first one does not update, but the second does.
<h3> Nums </h3>
<label>a</label>
<input type="number" ng-model="a1" />
<label>b</label>
<input type="number" ng-model="b1" />
<br/>Result2: {{result2}} {{a1+b1}}
<ul>
<li ng-repeat=" i in cool">{{i}}</li>
</ul>
</div>
</div>
&#13;