AngularJS - 如何清除输入ui-select多个选项中的查询文本

AngularJS - How to clear query text in input of ui-select multiple options

我正在使用 ui-select(版本 - 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到select的多选项。在我搜索类型查询后,它仍然显示。我怎么能不显示呢?

JS代码

$scope.refreshStaff = function(name) {
  Staffs.query($scope.queryCriteria).then(function(response) {
    return response.data;
  });
}
<ui-select ... reset-search-input="true">