在给&&或||时条件不起作用在ng-repeat和ng-if中。我需要过滤-数据并需要在屏幕上显示特定数据。所以我写了以下条件
ng-if="(value | filter: { isactive : '1' } : true).length==0"
如果isactive为“ 1”,我将显示数据。如果它是“ 0”,我什么也不会显示。 但是现在我需要添加两个条件来显示数据。
ng-if="(value | filter: { isactive : '1' && isvisible : '1'} : true).length==0"
我的情况下,两个值都必须为“ 1”。
ng-class="{ 'no-card': (value | filter: { isactive : '1' && isvisible :'1'}:true).length==0 }"
我该怎么做?