我从不同的 REST API 获得的数据具有带有特殊字符的字段名称和它们之间的空格。
例如,不要row.DatasetID
像这样传递:
<ng-container matColumnDef="ID">
<th mat-header-cell *matHeaderCellDef mat-sort-header>ID</th>
<td mat-cell *matCellDef="let row">{{row.DatasetID}}</td>
</ng-container>
我想这样传递它:
<ng-container matColumnDef="ID">
<th mat-header-cell *matHeaderCellDef mat-sort-header>ID</th>
<td mat-cell *matCellDef="let row">{{row.'Dataset ID'}}</td>
</ng-container>
如果返回正确/字段名称包含空格或“@”等特殊字符,我该如何格式化映射?