Я предполагаю, что вы уже установили angular материал в свой проект.
шаг 1: - создайте интерфейс для ваших данных.
export interface PeriodicElement {
name: string;
position: number;
weight: number;
symbol: string;
}
шаг 2: - затем в вас компонент, который вам нужно будет добавить.
displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];
dataSource: PeriodicElement[] = [];
displayColumns представляет имя столбца. шаг 3: - затем в вашем методе oninit вы можете назначить данные переменной dataSource.
this.dataSource = [
{position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},
{position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},
{position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},
{position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},
{position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},
{position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},
{position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},
{position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},
{position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},
{position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},
];
stpe 4: - И в html вы можете отобразить это так.
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<!--- Note that these columns can be defined in any order.
The actual rendered columns are set as a property on the row definition" -->
<!-- Position Column -->
<ng-container matColumnDef="position">
<th mat-header-cell *matHeaderCellDef> No. </th>
<td mat-cell *matCellDef="let element"> {{element.position}} </td>
</ng-container>
<!-- Name Column -->
<ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef> Name </th>
<td mat-cell *matCellDef="let element"> {{element.name}} </td>
</ng-container>
<!-- Weight Column -->
<ng-container matColumnDef="weight">
<th mat-header-cell *matHeaderCellDef> Weight </th>
<td mat-cell *matCellDef="let element"> {{element.weight}} </td>
</ng-container>
<!-- Symbol Column -->
<ng-container matColumnDef="symbol">
<th mat-header-cell *matHeaderCellDef> Symbol </th>
<td mat-cell *matCellDef="let element"> {{element.symbol}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
Дайте мне знать, если у вас все еще есть сомнения.
Обновленный код
в list.component.ts
добавьте эти две переменные.
displayedColumns: string[] = ['ID', 'Product Name', 'Manufacturer', 'Audit Interval', 'Action Buttons'];
dataSource = [];
затем в ngOnInit добавьте это.
this.dataSource = this.people;
Затем в list.component. html
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<!--- Note that these columns can be defined in any order.
The actual rendered columns are set as a property on the row definition" -->
<!-- ID Column -->
<ng-container matColumnDef="ID">
<th mat-header-cell *matHeaderCellDef> ID </th>
<td mat-cell *matCellDef="let element"> 1 </td>
</ng-container>
<!-- Product Name Column -->
<ng-container matColumnDef="Product Name">
<th mat-header-cell *matHeaderCellDef> Product Name </th>
<td mat-cell *matCellDef="let element"> {{element.fName}} </td>
</ng-container>
<!-- Manufacturer Column -->
<ng-container matColumnDef="Manufacturer">
<th mat-header-cell *matHeaderCellDef> Manufacturer </th>
<td mat-cell *matCellDef="let element"> {{element.lName}} </td>
</ng-container>
<!-- Audit Interval Column-->
<ng-container matColumnDef="Audit Interval">
<th mat-header-cell *matHeaderCellDef> Audit Interval </th>
<td mat-cell *matCellDef="let element"> {{element.aDays}} </td>
</ng-container>
<!-- Action Column-->
<ng-container matColumnDef="Action Buttons">
<th mat-header-cell *matHeaderCellDef> Action Buttons </th>
<td mat-cell *matCellDef="let element">
<button mat-button mat-raised-button color="accent" [routerLink]="['/edit', i]">edit </button>
<button mat-button mat-raised-button color="warn" (click) = openDialog(i) > delete </button>
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
После обновления кода я могу отобразить таблицу, пожалуйста проверьте прикрепленный скриншот.
в настоящее время идентификатор не приходит в ваши данные, вы можете использовать текущий индекс в качестве идентификатора. Надеюсь, это поможет.