来自同一控制器的AngularJs ng-if函数调用不起作用

前端之家收集整理的这篇文章主要介绍了来自同一控制器的AngularJs ng-if函数调用不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<div ng-repeat=" x in z"> 
    <div ng-if="function(x).y" >  
        display this
    </div>
</div>

在上面的代码中,没有刷新就不会调用ng-if函数(x).

请检查并建议我是否遗漏了任何东西?

这是工作的例子
angular.module('app',[])
.controller('ctrl',function($scope) {
    $scope.z = [1,2,3];
    $scope.display = function(x) {
        return x === 2
    };
});

<div ng-app="app" ng-controller='ctrl'>
   <div ng-repeat=" x in z"> 
       <div ng-if="display(x)" >  
           display this
       </div>
   </div>
</div>

fiddle.

原文链接:https://www.f2er.com/angularjs/141581.html

猜你在找的Angularjs相关文章