我使用ui-select (https://github.com/angular-ui/ui-select)。
ui-select支持搜索,选择和多选择。但是我怎样才能得到用户在ui-select搜索框中输入的值呢?如果用户键入的值不正确,我想显示一条错误消息。
示例:在这个柱塞下面与Select2主题,当用户类型:'asdasd'(此文本不与任何结果匹配)我想显示一个消息"不找到任何结果!"
plnkr.co/edit/a3KlK8dKH3wwiiksDSn2?p=preview
我该怎么做呢?
非常感谢!
angular_ui_select中的输入数据进入$select.search model
。您可以使用ui-select-choice
的刷新属性。只需传递refresh="test($select.search)"
中的函数,并分别使用refresh-delay
和minimum-input-length
属性设置延迟和最小输入长度。下面是一个简单的例子:
<ui-select ng-model="model" theme="theme">
<ui-select-match>{{data}}</ui-select-match>
<ui-select-choices repeat="options in data" refresh="yourFunction($select.search)" refresh-delay="100" minimum-input-length="1"></ui-select-choices>
</ui-select>
我建议你看一下文档,希望它会有帮助。angular-ui-select
您可以使用ng-keypress="fn($select.search)" at <ui-select...>
并在控制器上使用这个函数来获取输入
$scope.fn = function(search) {
//do something with search
}
如果使用$select。搜索得到预期的结果,我们必须再次循环搜索。到目前为止,对于大于0.17.1的版本,我们可以使用最简单的解决方案:使用ui-select-no-choice
非常感谢您的支持!
您也可以在<ui-select...>
ng-init="setSelect($select)"
您可以通过创建自定义过滤器来实现这一点。在这个例子中;'uppercasetr'是自定义过滤器。
<ui-select ng-model="vm.mc" theme="select2" limit="10">
<ui-select-match placeholder="Country...">{{$select.selected.SectionTitle}}</ui-select-match>
<ui-select-choices repeat="item in vm.data | propsFilter:{SectionTitle : ($select.search | uppercasetr)} | limitTo:$select.limit">
<div ng-bind-html="(item.SectionTitle) | highlight: $select.search"></div>
<small>
<b>Country:</b> {{item.SectionValue1}}
</small>
</ui-select-choices>
</ui-select>
你可以使用angular-ui-bootstrap的typeahead来达到同样的目的。这里是活塞链接http://plnkr.co/edit/gsJzdTZHiXZ6MrtTe4F3?p=preview
HTML:<div class='container-fluid typeahead-demo' ng-controller="TypeaheadCtrl">
<pre>Model: {{asyncSelected | json}}</pre>
<input type="text" ng-model="asyncSelected" placeholder="Locations loaded via $http" uib-typeahead="address for address in getLocation($viewValue)" typeahead-loading="loadingLocations" typeahead-no-results="noResults" class="form-control">
<i ng-show="loadingLocations" class="glyphicon glyphicon-refresh"></i>
<div ng-show="noResults">
<i class="glyphicon glyphicon-remove"></i> No Results Found
</div>
</div>