
此select包含注册表中所有国家/地区的列表。关键是表单页面中的ion-content是可滚动的,但选择它本身并不是滚动。代码如下:
<ion-item>
<ion-select interface="action-sheet" class="select" placeholder="Country">
<ion-option ngDefaultControl [value]='country.name' *ngFor="let country of countries">{{country.name}}
</ion-option>
</ion-select>
</ion-item>为什么选择滚动不起作用?
发布于 2019-07-26 14:08:32
这是一个已知的问题,您可以在https://github.com/ionic-team/ionic/issues/17311#issuecomment-460829890上跟踪
Ionic通过在global.scss中设置以下css提供了一种解决方法
.action-sheet-group {
overflow: auto !important;
}希望这能有所帮助
https://stackoverflow.com/questions/54589530
复制相似问题