分配相同类型的对象时,自动完成不起作用

时间:2019-11-27 22:08:14

标签: angular typescript angular-material

我可以使用mat-autocompleteUI_Units获取所有可能的值,进行设置并从value循环中的对象中获取foreach并为其分配相同的对象键入?

原始代码:

 <select id="unit" name="unit" #unit="ngModel" class="form-control" 
     [(ngModel)]="iu.unit">
     <option *ngFor="let i of UI_Units" [ngValue]="i">{{i.name}}</option>
 </select>

使用angular-material调整后的代码:

 <mat-form-field class="example-full-width">
              <input type="text" placeholder="Wähle eine Einheit aus" aria-label="Number" matInput [formControl]="myControl" [matAutocomplete]="auto" >
              <mat-autocomplete #auto="matAutocomplete">
                <mat-option *ngFor="let  i of UI_Units" [value]="i.name">
                  {{i.name}}
                </mat-option>
              </mat-autocomplete>
            </mat-form-field>

=>缺少作业。

See,我遇到了这个问题。

也许您有不同的想法来解决该问题?

0 个答案:

没有答案