我有一个数组:
let headers = [
{ title: 'First Name', style: 'bold' },
{ title: 'Last Name', style: 'bold' },
{ title: 'Book', style: 'bold', titleSecond: 'All/Remainder', style2:'not bold' },
{ title: 'City', style: 'not bold', titleSecond: 'Street', style2: 'not bold' }
];
我正在迭代简单的HTML表格:
<table>
<thead>
<tr>
<th *ngFor="let header headers">
{{ header.title }}
</th>
</tr>
</thead>
</table>
是否可以使表头看起来像这样:
是否可以为表头创建一些模板?我可以改变我的对象,因为我想改变这个headers
对象。