別の 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>
返される適切な/フィールド名にスペースや「@」などの特殊文字が含まれている場合、マッピングをフォーマットするにはどうすればよいですか?