gpt4 book ai didi

angular - Material 自动完成面板问题

转载 作者:行者123 更新时间:2023-12-02 15:21:55 25 4
gpt4 key购买 nike

在我的 Angular 4 项目中,我遇到了 Material 自动完成的问题。当我输入某些内容并且滚动页面时组件会显示建议时,我会看到建议面板与自动完成字段取消链接,如图所示。但在Material-Autocomplete我没有这个问题。

这是我的代码:

<mat-form-field>
<input matInput placeholder="{{'customer.detail.labels.country'
| translate }}" required [matAutocomplete]="tdAuto" name="country" #country="ngModel" [(ngModel)]="selected.country"
(ngModelChange)="searchCountry($event)"> </mat-form-field>
<mat-autocomplete #tdAuto="matAutocomplete" [displayWith]="displayFn">
<mat-option (onSelectionChange)="setCountry(country)" *ngFor="let country of countries" [value]="country">
<div class="row">
<img src="assets/img/flags24/{{country.alpha2Code | lowercase}}.png" />
<span>{{country.name}} ({{country.alpha2Code}})</span>
</div>
</mat-option>
</mat-autocomplete>

enter image description here

最佳答案

在组件中使用 CdkScrollable。还将其添加到模块文件中的导入中。

关于angular - Material 自动完成面板问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48146853/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com