以下代码未应用ngClass。
<table mat-table [dataSource]="dataSourceAB">
<ng-container matColumnDef="Type">
<th mat-header-cell *matHeaderCellDef> Type </th>
<td mat-cell *matCellDef="let element" [ngClass]="(element.TxnType=='Credit')?'text-success':'text-danger'"> {{element.TxnType}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumnsAB"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumnsAB;"></tr>
/table>
我正在显示正确的数据,但未应用课程。错了吗?
答案 0 :(得分:0)
在CSS中添加text-success
和text-danger
Component.html
<table mat-table [dataSource]="dataSourceAB" class="mat-elevation-z8">
<ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef> Type </th>
<td mat-cell *matCellDef="let element" [ngClass]="(element.TxnType=='Credit')?'text-success':'text-danger'"> {{element.TxnType}}
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumnsAB"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumnsAB;"></tr>
</table>