AngularJS Typeahead始终显示

时间:2015-06-24 17:14:47

标签: javascript angularjs angular-ui-typeahead

我正在使用AngularJS typeahead指令迭代一个由API预先填充的对象数组,以便typeahead从内存中提取所有信息。

我希望当input获得focus后,typeahead会显示所有可用结果,即使value中没有input {1}}。

我找到了typeahead <input typeahead-min-length="0" class="form-control input-sm" ng-model="query" typeahead="warehouse.info for warehouse in warehouses | filter:$viewValue" typeahead-on-select="selectedWarehouse = $item;" ng-keypress="fetchWarehouses();"/> ,我们可以用它来测试。

我尝试过使用:

typeahead-min-length="0"

..认为属性ZipFile可以实现这一点,但它没有。

有什么想法吗?谢谢!

0 个答案:

没有答案