2

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

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

4

1 回答 1

6

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

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

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

于 2019-11-09T05:01:53.523 回答