我的代码上有这个 ui-select。我正在用 Ionic 和 AngularJS 构建一个移动应用程序。
<ui-select name="org" ng-model="user.org.selected" theme="selectize" class="form-control ng-pristine ng-invalid ng-invalid-required" style="margin-top: -5px; margin-left: 7px;" required>
<ui-select-match placeholder="Organization Name" focus-me="true">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="item in rea_list | filter: $select.search |limitTo: 20" position="down">
<div ng-bind-html="item.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
当我将此代码放在 ionicPopup 上时,我可以滚动选项列表以查看列表中的 20 个选项,但如果我将此代码放在页面上的 ion-view 或 ionicModal 中,我无法滚动浏览 20 个选项.
我不知道为什么会这样,我也想不出解决办法。它可以在网络上完美运行,但不能在移动设备上运行。