我正在开发Angular应用,该应用需要显示从API检索的数据。由于我不确切知道要检索什么数据,而且这是我需要用于不同表的模型,因此我需要使它既可以动态生成列,又可以填充每个单元格。
我检索并需要在表中打印的JSON与此类似:
[
{
"attributes": [],
"brandReference": "f805a08df4c236ddb431e14a38419690",
"computedPOS": "BEXFY_HEADQUARTERS",
"deviceType": 1,
"friendlyName": "BEXFY_TRANSPARENT_LED",
"id": "953e9414d7a51e8-e0-681def0b02b5",
"isMonitored": true,
"location": "entrance",
"posReference": "78fcef0f12993d52b2d2906dc4ce48d8",
"timetable": [],
"timezone": "Europe/Madrid"
},
{
"attributes": [],
"brandReference": "185fd549-4410-462b-a610-fe6b61c91cf6",
"comments": "",
"computedPOS": "BEXFY_HEADQUARTERS",
"deviceType": 1,
"friendlyName": "BEXFY_AUDIO_OFICINA",
"id": "79eaa7f5f6603809-e0-681def0b0290",
"location": "",
"posReference": "78fcef0f12993d52b2d2906dc4ce48d8",
"timetable": [],
"timezone": "Europe/Madrid"
},
{
"attributes": [],
"brandReference": "185fd549-4410-462b-a610-fe6b61c91cf6",
"comments": "",
"computedPOS": "BEXFY_HEADQUARTERS",
"deviceType": 1,
"friendlyName": ".BEXFY_AUDIO_ADRI",
"id": "97bf675e3e237bcd-e0-681def0b029f",
"location": "",
"posReference": "78fcef0f12993d52b2d2906dc4ce48d8",
"timetable": [],
"timezone": "Europe/Madrid"
}
]
请注意,对象属性键可能会更改,因此我无法对诸如element.friendlyName之类的内容进行硬编码。我会收到应该通过如下所示的数组使用的键名。
["friendlyName", "computedPOS", "location"]
因此,为了使其正常工作,我做了类似的事情。
<table mat-table [dataSource]="dataSource.data" class="mat-elevation-z8" style="width:90%;margin:0 auto;">
<ng-container *ngFor="let column of modelCols; let colIndex = index" matColumnDef={{nameCols[colIndex]}}>
<th mat-header-cell *matHeaderCellDef> {{nameCols[colIndex]}}</th>
{{log(modelCols)}}
<div *ngFor="let column of modelCols;">
<td mat-cell *matCellDef="let element">
{{log(element[column])}}
{{element[column]}}
</td>
</div>
</ng-container>
<tr mat-header-row *matHeaderRowDef="nameCols"></tr>
<tr mat-row *matRowDef="let row; columns: nameCols;"></tr>
</table>
此问题是,它导致在该行的每一列上重复第一个值(“ friendlyName”)。像这样的东西。
预期的工作方式如下:
答案 0 :(得分:1)
您需要遍历nameCols
才能显示动态列。 API要求您显示的任何列都是您要迭代以显示您的列的全部。由于您正在使用element[column]
在行中显示项目。它只会显示所需的项目。
<ng-container *ngFor="let column of nameCols; let colIndex = index" [matColumnDef]="column">
<th mat-header-cell *matHeaderCellDef>{{column}}</th>
<td mat-cell *matCellDef="let element">{{element[column]}}</td>
</ng-container>
以下是有关StackBlitz上的数据的有效示例。这样,即使要显示一组不同的API列,您所需要做的就是更新nameCols
以显示正确的列。模板将处理其余部分,并在显示的列中显示相关数据。