簡體   English   中英

AngularJS ng-show IF AND條件

[英]AngularJS ng-show IF AND condition

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

編寫以上內容的正確方法是什么? authuser[0].auth都是$rootScope一部分。 我只希望此列表項在$rootScope.auth = true$rootScope.user[0].auth = 1

你可以像下面這樣寫

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM