迭代时如何选择模板?

时间:2017-08-11 14:25:34

标签: javascript html angular html-table

我有一个数组:

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>

是否可以使表头看起来像这样:

enter image description here

是否可以为表头创建一些模板?我可以改变我的对象,因为我想改变这个headers对象。

0 个答案:

没有答案