gpt4 book ai didi

angular - 在动态 Material 表模板中显示嵌套对象

转载 作者:行者123 更新时间:2023-12-04 09:07:49 24 4
gpt4 key购买 nike

我想在表中显示 weight.name。我能够通过转换数据来做到这一点。但是,我不想以任何形式操作数据。我尝试在行模板 (displayedColumns) 中将 weight 更改为 weight.name,但没有返回任何数据。

App.component.html

<table mat-table [dataSource]="dataSource">
<ng-container *ngFor="let col of displayedColumns" [matColumnDef]="col">
<th mat-header-cell *matHeaderCellDef> {{col}} </th>
<td mat-cell *matCellDef="let element"> {{element[col]}} </td>
</ng-container>

<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>

App.component.ts

import { Component } from '@angular/core';

export interface PeriodicElement {
name: string;
position: number;
weight: any;
symbol: string;
}

const ELEMENT_DATA: PeriodicElement[] = [
{position: 1, name: 'Hydrogen', weight: {name: 5.55}, symbol: 'H'},
{position: 2, name: 'Helium', weight: {name: 5.55}, symbol: 'He'},
{position: 3, name: 'Lithium', weight: {name: 5.55}, symbol: 'Li'},
{position: 4, name: 'Beryllium', weight: {name: 5.55}, symbol: 'Be'},
{position: 5, name: 'Boron', weight: {name: 5.55}, symbol: 'B'},
{position: 6, name: 'Carbon', weight: {name: 5.55}, symbol: 'C'},
{position: 7, name: 'Nitrogen', weight: {name: 5.55}, symbol: 'N'},
{position: 8, name: 'Oxygen', weight: {name: 5.55}, symbol: 'O'},
{position: 9, name: 'Fluorine', weight: {name: 5.55}, symbol: 'F'},
{position: 10, name: 'Neon', weight: {name: 5.55}, symbol: 'Ne'},
];

@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];
dataSource = ELEMENT_DATA;
}

这是供引用的 stackblitz 链接。 https://stackblitz.com/edit/angular-mat-table-dynamic-columns-x36dvr?file=src%2Fapp%2Fapp.component.ts

最佳答案

您的问题是您将权重列显示为 row[col] 或 rowInstance['weight'],它显示权重对象的 toString() 导致 [object object ]

  1. 将您的表格模板修改为:

    <table mat-table [dataSource]="dataSource">
    <ng-container matColumnDef="position">
    <mat-header-cell *matHeaderCellDef> Position </mat-header-cell>
    <mat-cell *matCellDef="let row">{{row.position}}</mat-cell>
    </ng-container>
    <ng-container matColumnDef="name">
    <mat-header-cell *matHeaderCellDef> Name </mat-header-cell>
    <mat-cell *matCellDef="let row">{{row.name}}</mat-cell>
    </ng-container>
    <ng-container matColumnDef="weightName">
    <mat-header-cell *matHeaderCellDef> Weight </mat-header-cell>
    <mat-cell *matCellDef="let row">{{row.weight.name}}</mat-cell>
    </ng-container>
    <ng-container matColumnDef="symbol">
    <mat-header-cell *matHeaderCellDef> Symbol </mat-header-cell>
    <mat-cell *matCellDef="let row">{{row.symbol}}</mat-cell>
    </ng-container>

    <mat-header-row *matHeaderRowDef="displayedColumns">
    </mat-header-row>
    <mat-row *matRowDef="let row; columns: displayedColumns;">
    </mat-row>
    </table>

并在您的 ts 文件中,将显示列修改为:

  `displayedColumns: string[] = ['position', 'name', 'weightName', 'symbol'];`

https://stackblitz.com/edit/angular-mat-table-dynamic-columns-w7do4c?file=src/app/app.component.html

  1. 将上游的数据模型转换/扁平化为如下所示,并保持模板不变。

    [{position: 1, name: 'Hydrogen', weightName: 5.55, symbol: 'H'},...]

关于angular - 在动态 Material 表模板中显示嵌套对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63414910/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com