我正在尝试在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;
};
}
答案 0 :(得分:40)
您可以将ng-change
指令添加到输入字段。请查看文档example。
答案 1 :(得分:28)
我猜测当你在总计字段中输入一个值时,表达式会以某种方式被覆盖。
但是,您可以采用其他方法:为总值创建一个字段,并在one
或two
更改时更新该字段。
<li>Total <input type="text" ng-model="total">{{total}}</li>
并更改javascript:
function TodoCtrl($scope) {
$scope.$watch('one * two', function (value) {
$scope.total = value;
});
}
示例小提琴here。
答案 2 :(得分: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>
答案 3 :(得分: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>
答案 4 :(得分:-3)
创建一个指令并对其进行监视。
app.directive("myApp", function(){
link:function(scope){
function:getTotal(){
..do your maths here
}
scope.$watch('one', getTotals());
scope.$watch('two', getTotals());
}
})