我尝试创建一个显示或隐藏 Div 的 Angular JS 函数,以防满足特定要求。我现在确实有问题,该函数没有正确调用,并且两个 div 要么可见要么不可见(在测试用例中,应该显示 div 1 而不显示 div 2)。
testApp.controller('MyController', ['$scope','$http',
function ($scope,$http) {
$scope.checkValue = function(value){
if(value >= 1)
return true;
else
return false;
};
}]);
在 html 文件中,我尝试使用以下参数隐藏 Div
<div class="classa" ng-hide="requestsExisting({{profile.arrayA.length}})">
<div class="classb" ng-hide="requestsExisting({{profile.arrayB.length}})">
是在运行时{{profile.parameterA.length}}
传递给函数还是存储在这个变量中的实际值?(它是 1arrayA
和 0 ArrayB
)