有人能帮我一下吗?下面是我的代码和问题解释。
<table>
<thead>
<tr>
<th>Icon</th>
<th>Name</th>
<th>Details</th>
</tr>
</thead>
<tbody ng-repeat="category in editor.categories">
<tr>
<th>{{category.categoryName}}</th>
</tr>
<tr ng-repeat="feature in category.features"> // Question?
<td>{{feature.iconImg}}</td>
<td>{{feature.featureName}}</td>
<td>{{feature.details}}</td>
</tr>
<tr ng-if="feature.id==1"> // condition 1
</tr>
<tr ng-if="feature.id==2"> // condition 2
</tr>
</tbody>
</table>
现在,让我来解释这个问题。我有一组类别。每一个类别都是一组特征。
现在我的问题是,如何根据ng-if
条件显示每个类别的这些特征?也就是说,条件1下的<tr>
只有在feature.id==1
时才会显示,条件2下的feature.id==2
才会显示。
Q。如何根据不同的条件加入我的ng-if条件?
非常感谢您的帮助。
在一个标签内同时使用ng-if和ng-repeat:
<tr ng-repeat="feature in features"
ng-if="feature.id === 1" >
</tr>
或者,如果你想有条件地显示一些模板,你可以使用ng-switch,例如:
<tr
ng-repeat="feature in features"
ng-switch="feature.id" >
<span ng-switch-when="1"></span>
<span ng-switch-when="2"></span>
</tr>
检查ng-switch和ng-switch-when
https://docs.angularjs.org/api/ng/directive/ngSwitch对