我正在使用 ui-select(version - 0.11.2),我的HTML
代码如下:
<ui-select ng-model="staff.selected" ng-disabled="disabled" reset-search-input="false" multiple>
<ui-select-match placeholder="Staff">{{$item.name}}</ui-select-match>
<ui-select-choices repeat="staff in staffs" refresh="refreshStaff($select.search)" refresh-delay="0">
<div ng-bind-html="name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
在这里,我multiple
用来选择多个选项。在我搜索类型查询后,它仍然显示。我怎么能不表现出来?
JS
代码
$scope.refreshStaff = function(name) {
Staffs.query($scope.queryCriteria).then(function(response) {
return response.data;
});
}