在Angular Material 1中,可以通过单击按钮打开md-autocomplete
下拉列表(参见doc)。
在Angular Material 2中,我没有看到mat-autocomplete
(cf doc)的这种可能性。这在某种程度上还有可能吗?怎么样 ?我正在考虑让input
隐藏并触发openPanel
,但对于这样一个简单的用法来说似乎有些过分......
感谢您的帮助
[编辑]
现在我的代码是这样的(我没有添加按钮,因为我不确定这是正确的方式)
<mat-form-field>
<input type="text" placeholder="Pronostique le futur vainqueur" aria-label="Vainqueur" matInput
[(ngModel)]="worldcupWinner" name="worldcupWinner" [matAutocomplete]="auto">
<mat-autocomplete #auto="matAutocomplete">
<mat-option *ngFor="let team of teams" [value]="team">
<img class="flag" [src]="team.flag_url" />
<span class="label">{{ team.name }}</span>
</mat-option>
</mat-autocomplete>
</mat-form-field>
答案 0 :(得分:1)
如果您添加代码,我会向其添加引用和函数调用。
修改强>
<mat-form-field>
<input #trigger="matAutocompleteTrigger" type="text" placeholder="Pronostique le futur vainqueur" aria-label="Vainqueur" matInput [(ngModel)]="worldcupWinner" name="worldcupWinner" [matAutocomplete]="auto">
<mat-autocomplete #auto="matAutocomplete">
<mat-option *ngFor="let team of teams" [value]="team">
<img class="flag" [src]="team.flag_url" />
<span class="label">{{ team.name }}</span>
</mat-option>
</mat-autocomplete>
</mat-form-field>
<button mat-raised-button (click)="openThatPanel()">OPEN IT</button>
component.ts:
@ViewChild('trigger') trigger: MatAutocompleteTrigger;
openThatPanel() {
setTimeout(_ => this.trigger.openPanel());
}
不幸的是,我没有在trigger.openPanel()周围没有setTimeout的情况下打开它。