我有一个内含输入的ngFor。当我单击一个按钮时,它会复制ngFor内部的内容。每个新副本都有一个索引,我想知道如何访问这些元素的Dom。
我已经尝试使用ViewChild,但是#input之类的模板变量不接受索引为#input {{i}}的模型
<div *ngFor="let item of items; let i = index;">
<mat-form-field>
<input id = "{{k}}" matInput>
</mat-form-field>
</div>
// My button does this on a click
this.items.push(this.items length + 1);
我希望访问每个元素的dom来设置一个值。