如果选择了两个选择框,我如何观察模型(不使用ng更改)应计算平均值并在文本字段中显示答案:例如
HTML I:
<select ng-model="box1" ng-options="item for item in boxA"></select>
控制器:
$scope.boxA=[1,2,3,4,5];
HTML II:
<select ng-model="box2" ng-options="item for item in boxB"></select>
控制器:
$scope.boxA=[6,7,8,9,10];
文字框:
<input type="text" ng-model="answer">
答案 0 :(得分:1)
如果您不想使用ng-change,我的建议是间隔检查控制器中的值。
$interval(function() {
if($scope.box1 && $scope.box2) {
$scope.answer = (parseInt($scope.box1) + parseInt($scope.box2))/2
}
}, 1000);
答案 1 :(得分:0)
为了更好,更Angular的方式,你可以改用$ watchCollection:
$scope.$watchCollection('[box1, box2]',function(newValues,oldValues){
console.log('Box1: '+newValues[0]+', Box2: '+newValues[1]);
$scope.answer = (parseInt(newValues[0]) + parseInt(newValues[1])/2; //(or replace 2 with newValues.length if you plan to add more models into watch and get an average of more;)
});
答案 2 :(得分:0)
您可以使用以下内容观看$scope.box1
和$scope.box2
:
$scope.$watch('box1', function(value){
$scope.answer = calculateAverage(value, $scope.box2);
});
$scope.$watch('box2', function(value){
$scope.answer = calculateAverage(value, $scope.box1);
});
看一下这个小提琴演示:http://jsfiddle.net/manzapanza/wm8s5vmz/1/