我创建了一个小型的plunker来证明这不起作用。谁能帮助我如何使用1.3.0 angularJS /提供备用解决方案的typeahead。我们正在使用angular-bootstrap 0.11.0和最新版本的bootstrap。我们的代码严重依赖于1.3.0中引入的ng-message
您可以清楚地看到,点击事件,向上箭头和向下箭头不起作用。添加一些代码以使SO快乐。 :)
<div class="container-fluid" ng-controller="TypeaheadCtrl">
<h4>Static arrays</h4>
<pre>Model: {{selected | json}}</pre>
<input type="text" ng-model="selected" typeahead="state for state in states | filter:$viewValue | limitTo:8" class="form-control" />
</div>