这应该是一个简单的问题,但我不明白发生了什么。基本上,我使用 ng-if 和 ng-repeat 将对象传递给我的控制器中的函数调用。但是我的函数没有看到传递给它的参数。它说未定义。
var app = angular.module('newformController', []);
app.controller('NewFormController', ['$scope', '$log',
function($scope, $log) {
$scope.meta = {
"GRANT": {
"VALUE": "2",
"DEFAULT": "1",
"RANGE": "1:4",
"TYPE": "INTEGER",
"DESCRIPTION": "Some description"
}
};
$scope.testing = function(x) {
$log.debug('X is: ' + x);
if (x == "1:4") {
return true;
} else {
return false;
}
};
}]);
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<tr ng-repeat="(param,value) in meta">
<td>{{param}}</td>
<td>{{value.DESCRIPTION}}</td>
<span ng-if="testing(value.RANGE)">
<td><input type="text" class="form-control" value="{{value.DEFAULT}}"></td>
</span>
</tr>
为什么控制台打印 'undefine' ?为什么函数会被调用这么多次?我只有一个键,ng-repeat 不应该只循环一次吗?
现在,如果我不是“value.RANGE”而是将一些字符串传递给函数,则该字符串将被正确读取/打印......