ngFor-无法绑定到“ testid”,因为它不是“ input”的已知属性。如何用字符串连接id?

时间:2019-11-09 04:22:56

标签: angular angular8 angular-template-variable angular-testing-library

我正在尝试将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}}">

我的代码有什么问题?有人帮我吗?

1 个答案:

答案 0 :(得分:1)

我认为您将需要属性绑定。因此,请尝试替换下面的testid数据属性。

<td ... [attr.data-testid]="'form-create-td-' + i">

对于带有字符串的串联id属性,您正在做正确的事。