4

我正在使用 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;
  });
}
4

1 回答 1

1
<ui-select ... reset-search-input="true">
于 2015-06-22T13:03:27.820 回答