這裏是我的HTML表格如何在ng-repeat中添加條件?
<table>
<tbody>
<tr class="unread" ng-repeat="CU in InboxList">
<td class="text-right mail-date">{{CU.time}}</td>
</tr>
<tr class="read">
<td class="text-right mail-date">12:00 pm</td>
</tr>
</tbody>
</table>
在我的HTML表格有兩種TR類一個是tr class="read"
等是class="unread"
我已經綁定tr class="unread"
。現在我想檢驗一個條件,如果{{cu.isread=0}}
然後tr
類閱讀否則會綁定tr
類未讀會bind.how
要做到這一點?
這是100%的工作代碼。 –