我遇到了anular-ui-bootstrap 模态指令的问题。我在我的应用程序中使用 angular 的ui-select组件作为 html 选择的替代品。此 ui-select 在包含它的任何页面中都可以正常工作。但是当我尝试将它包含在模式弹出窗口中时(使用 ui-bootstrap $modal服务),下拉菜单不显示选项
该问题在此处重现
angular.module('ui.bootstrap.demo').controller('ModalInstanceCtrl', function ($scope, $modalInstance, items) {
$scope.addresses = [{
"id":1,
"name": "chennai"
}, {
"id":2,
"name": "banglore"
}, {
"id":3,
"name": "madurai"
}];
});
<div class="modal-body">
City
<ui-select ng-model="selAddress">
<ui-select-match placeholder="Choose an address">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="address in addresses track by $index" refresh-delay="0">
<div ng-bind-html="address.a | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
Selected: <b>{{ selAddress }}</b>
</div>
任何帮助将非常感激。提前致谢。