是否可以预先输入对象数组? Example of the array
编辑:我当前的代码仅过滤名称对象,并且我希望它能够过滤所有对象,这样,当我在搜索框中输入邮政编码时,它将同时显示名称和邮政< / p>
<input type="text" ng-model="selected" uib-typeahead="cname for cname in all | filter:$viewValue:onlyMatch| limitTo:5">
示例如下: Expected result
答案 0 :(得分:0)
您需要它
<input type="text" ng-model="selected" typeahead="state.NAME for state in POSTALCODES | filter:$viewValue | limitTo:8" class="form-control">