Typeahead using object name

前端 未结 2 660
耶瑟儿~
耶瑟儿~ 2020-12-30 06:19

I\'m trying to setup a typeahead using AngularJS & UI Bootstrap like so:

.html



        
相关标签:
2条回答
  • 2020-12-30 06:39

    Sure thing :-)

    The typeahead directive from http://angular-ui.github.io/bootstrap/ uses the same super-flexible syntax as the AngularJS select directive for ng-options. So you could write:

    typeahead="stuff as stuff.name for stuff in stuffs | filter:$viewValue"
    

    Here is a working plunk: http://plnkr.co/edit/5kGZkNPZ7rIFfb4Rvxej?p=preview

    0 讨论(0)
  • 2020-12-30 06:39

    I had the same problem. I have solved it by

    typeahead="country.name for country in countryList | filter:$viewValue | limitTo:8"
    

    here countryList is a list of country object. name is one of property of country object. For me it is working fine.

    0 讨论(0)
提交回复
热议问题