最佳答案
我正在研究桌面元素的角度。Al 通过我的代码工作得很好。但是当我需要在 td
属性 colspan
上实现属性绑定时,它会在浏览器控制台中显示如下错误:
Uncaught Error: Template parse errors:
Can't bind to 'colspan' since it isn't a known property of 'td'. ("Total Rows:
</td>
<td [ERROR ->]colspan="{{count}}">
{{rows}}
</td>
我想说的是:
<table class="table table-hover" width="100%">
<tr>
<th *ngFor="let col of columns">
{{col}}
</th>
</tr>
<tr *ngFor="let data of getFilteredData">
<td *ngFor="let col of columns">
{{data[col]}}
</td>
</tr>
<tr>
<td colspan="{{count}}">
Total Rows: {{rows}}
</td>
</tr>
</table>
我想要的:
在我的。Ts 文件我给列数组的长度赋了 count
值,所以不管列的长度是多少,我的页脚单元格使用属性绑定都是均匀分布的。
我也试着:
但所有这些都不起作用,并显示出相同的错误。