uib-typeahead不工作但是typeahead在AngularJS中

时间:2018-03-07 23:57:37

标签: angularjs typeahead angular-bootstrap

尝试使用Bootstrap uib-typeahead来处理搜索栏异步。我得到了正确的数据响应,一组对象:

[ { username: 'yaboi' },
  { username: 'Gepeto' },
  { username: 'Zanbato' },
  { username: 'Colonel' },
  { username: 'Hipster' },
  { username: 'jacob' } ]

但它似乎没有过滤或使用uib-typeahead。虽然我只能使用预先输入,但我可以得到一个响应,但它没有正确过滤掉,我很确定它已经折旧了,因为它在控制台中发出警告,说成功不是一个功能。

我的循环有问题吗?

<input id="giftUser" ng-model="asyncSelected" class="form-control" type="text" autocomplete="off" placeholder="Search Users" uib-typeahead="username for username in getUsers($viewValue)" typeahead-loading="loadingUsers" typeahead-no-results="noResults">
                <i ng-show="loadingUsers" class="glyphicon glyphicon-refresh"></i>
                <div ng-show="noResults">
                  <i class="glyphicon glyphicon-remove"></i> No Results Found
                </div>

1 个答案:

答案 0 :(得分:0)

我想我想通了 - 我使用的是旧版本的ui-bootstrap。 0.14之后的所有东西都需要uib,之前的一切都不需要。