如何在动态数据中显示空消息 table angular

How to show a empty message in dynamic data table angular

当过滤器不匹配时,我尝试显示空消息错误:

<div *ngIf="dataSource.length === 0">No data</div>

但它不起作用,因为我使用 MatTableDataSource 构建了一个动态 table。

为了更好地理解,我将动态 table 更改为预定义数组。

const ELEMENT_DATA: MembersElement[] = [
{ name: 'Jenny', age: 17 },
{ name: 'Daniel', age: 18 }
];

但是,有必要使用 MatTableDataSource 来动态构建用户的 table

这是我所有的ts代码。

    import { Component, OnInit } from '@angular/core';
import {MatTableDataSource} from '@angular/material';

export interface SociosElement {
  nombre: string;
  edad: number;
}

const ELEMENT_DATA: MembersElement[] = [
  { name: 'Jenny', age: 17 },
  { name: 'Daniel', age: 18 }
];

@Component({
  selector: 'app-pruebas',
  templateUrl: './tableMembers.component.html',
  styleUrls: ['./tableMembes.component.css']
})
export class PruebasComponent {
  displayedColumns: string[] = ['name', 'age'];
  dataSource = new MatTableDataSource(ELEMENT_DATA);

  applyFilter(filterValue: string) {
    this.dataSource.filter = filterValue.trim().toLowerCase();
  }
}

这是我的 HTML 代码。

<mat-toolbar color="primary">My full table</mat-toolbar>
<mat-form-field>
    <input matInput (keyup)="applyFilter($event.target.value)" placeholder="Filter">
</mat-form-field>
<mat-table #table [dataSource]="dataSource">
    <ng-container matColumnDef="name">
        <mat-header-cell *matHeaderCellDef mat-sort-header>Name </mat-header-cell>
        <mat-cell *matCellDef="let element"> {{element.name}} </mat-cell>
    </ng-container>
    <ng-container matColumnDef="age">
        <mat-header-cell *matHeaderCellDef mat-sort-header>Age </mat-header-cell>
        <mat-cell *matCellDef="let element"> {{element.age}} </mat-cell>
    </ng-container>
    <mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
    <mat-row *matRowDef="let row; columns: displayedColumns;" (click)="row.toggle(row)">
    </mat-row>
</mat-table>
<div *ngIf="dataSource.length === 0">No data</div>

您无法使用 *ngIf="dataSource.length === 0" 条件达到您想要的结果,因为在您进行过滤时数据源根本没有改变。您要做的是注意过滤后的数据长度。您可以使用如下内容: *ngIf="dataSource.filteredData.length > 0" 作为条件。 datasource.filteredData 的长度根据过滤结果而变化。这种情况可以隐藏你的table。你可以把它放在你的 table 标签中,例如: <table mat-table [dataSource]="dataSource" *ngIf="dataSource.filteredData.length > 0">

使用 ngIf 的一个警告。如果您正在使用 matSort 并使用 *ngIf 将 table 嵌套在块中,则排序将不起作用,因为 ngIf 将 viewChild 设置为未定义。

使用 [ngClass] 解决这个问题

<div [ngClass]="dataSource.filteredData.length > 0 ? 'visible': 'hidden'">
  <mat-table #table [dataSource]="dataSource" matSort>
    <ng-container matColumnDef="name">
      <mat-header-cell *matHeaderCellDef mat-sort-header>Name </mat-header-cell>
      <mat-cell *matCellDef="let element"> {{element.name}} </mat-cell>
    </ng-container>
    <ng-container matColumnDef="age">
      <mat-header-cell *matHeaderCellDef mat-sort-header>Age </mat-header-cell>
      <mat-cell *matCellDef="let element"> {{element.age}} </mat-cell>
    </ng-container>
    <mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
    <mat-row *matRowDef="let row; columns: displayedColumns;" (click)="row.toggle(row)">
    </mat-row>
  </mat-table>
</div>
<div [ngClass]="dataSource.filteredData.length > 0 ? 'hidden': 'visible'">
  <tr>No results found.</tr>
</div>

这是 类

的 CSS
.hidden {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

对于 mat-table,在 v10 之前,您可以在数据源为空时为 table 提供一行数据,方法是: [dataSource]="dataSource.data.length > 0 && dataSource.data.filteredData > 0 ? dataSource : emptyDataSource" 然后为您的单元格创建一个列 def 以显示空数据消息: <ng-container vdlColumnDef="empty-row"> <td *matCellDef="let row" mat-cell [colSpan]="displayedColumns.length">No Data</td> </ng-container> 然后更改行定义以在数据源为空时显示空行列定义: <tr mat-row *matRowDef="let row; columns: dataSource.data.length > 0 && dataSource.data.filteredData > 0 ? displayedColumns : ['empty-row'];">

https://stackblitz.com/edit/angular-mat-table-no-data?file=src%2Fapp%2Ftable-basic-flex-example.html

在 Angular Material 10 之后,他们在 table 中没有数据时添加了一个指令:'If you want to show a message when not data matches the filter, you can use the *matNoDataRow directive.' https://v10.material.angular.io/components/table/overview#filtering