2 回答
TA贡献1878条经验 获得超4个赞
您正在将表绑定到list. 如果列表为空,则表中有 0 行,并且三元表达式永远不会运行。仅当您有一个非空列表时,您的三元表达式才会运行。
相反,使用*ngIf隐藏表格并显示空消息。
<table mat-table [dataSource]="list" class=" w-100" *ngIf="list.length">
<ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef>header</th>
<td mat-cell *matCellDef="let element">
{{element.name}}
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
<p *ngIf="!list.length">
the list is empty
</p>
三元表达式在 Angular 中也可以工作。尝试这个:
<p>{{list.length ? 'has rows' : 'does not have rows'}}</p>
演示: https: //stackblitz.com/edit/angular-at5wet
TA贡献1798条经验 获得超3个赞
如果列表始终存在(即使大小为 0),那么您应该不会遇到任何问题。如果它可以是未定义的,那么您需要使用可选链接。
{{ list?.length ? element.name : 'the list is empty' }}
- 2 回答
- 0 关注
- 96 浏览
添加回答
举报