<li ng-show="auth==true and user[0].auth==1">
写上述内容的正确方法是什么? auth
和user[0].auth
都是$rootScope
的一部分。我只想在$rootScope.auth = true
和$rootScope.user[0].auth = 1
答案 0 :(得分:2)
你可以像下面写一样
<li ng-show="auth && user[0].auth==1">
答案 1 :(得分:1)
<li ng-show="auth==true && user[0].auth==1">