如何生成动态垫自动完成

时间:2019-04-15 14:06:32

标签: angular material-design

我想在表中使用许多自动完成功能(每行一个)。

问题在于,当我有两行时,它会失败,因为它们引用了相同的ID。

ID“ auto”应该是变量,必须在之前指定,我不知道该怎么做。

<mat-form-field>
  <input type="text" matInput [formControl]="myControl" [matAutocomplete]="auto">
</mat-form-field>

<mat-autocomplete #auto="matAutocomplete">
  <mat-option *ngFor="let option of options" [value]="option">{{option}}</mat-option>
</mat-autocomplete>

有什么想法吗?

谢谢

0 个答案:

没有答案