gpt4 book ai didi

angular - 如何在 Angular 中使用属性绑定(bind)与 td 属性 colspan?

转载 作者:太空狗 更新时间:2023-10-29 17:08:14 25 4
gpt4 key购买 nike

<分区>

我正在用 Angular 处理表格元素。 Al 通过我的代码工作正常。但是当我需要在 td 属性 colspan 上实现属性绑定(bind)时,它在浏览器控制台中显示以下错误:

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>

我想要的:

enter image description here

在我的 .ts 文件中,我为列数组的长度赋予了 count 值,因此无论列的长度是多少,我的页脚单元格都使用属性绑定(bind)平均分布。

我也试试:

  • [colspan]="计数"
  • colspan="'计数'"

但这些都不起作用并显示相同的错误。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com