我正在尝试将index
值添加到我的ID中。但收到错误消息:
Can't bind to 'testid' since it isn't a known property of 'input'.
这是我的模板:
<td *ngFor="let col of columns; let i = index" [ngClass]="col.class" data-testid="form-create-td-{{i}}">
我的代码有什么问题?有人帮我吗?
答案 0 :(得分:1)
我认为您将需要属性绑定。因此,请尝试替换下面的testid数据属性。
<td ... [attr.data-testid]="'form-create-td-' + i">
对于带有字符串的串联id属性,您正在做正确的事。