AngularJS ng-show IF AND condition

时间:2014-08-15 12:03:09

标签: javascript angularjs

<li ng-show="auth==true and user[0].auth==1">

写上述内容的正确方法是什么? authuser[0].auth都是$rootScope的一部分。我只想在$rootScope.auth = true$rootScope.user[0].auth = 1

时显示此列表项

2 个答案:

答案 0 :(得分:2)

你可以像下面写一样

<li ng-show="auth && user[0].auth==1">

答案 1 :(得分:1)

<li ng-show="auth==true && user[0].auth==1">