Angular ui-select:添加自定义ID

时间:2015-10-23 06:46:48

标签: ui-select

我正在使用角度ui-select。

<ui-select  ng-model="selected" theme="select2">
    <ui-select-match placeholder="Select">{{$select.selected.name}}
    </ui-select-match>   
    <ui-select-choices 
         repeat="student in studentList | filter: $select.search"
         ng-class="{{student.name}}  == 'ABC' ? 'found' : 'not_Found' ">
         {{student.name}}          
    </ui-select-choices>   
</ui-select>  

我们可以为每个由ui-select-choices组成的新li添加自定义ID吗? 如果是,那么如何?

1 个答案:

答案 0 :(得分:0)

是的,使用丑陋但标准的Angular重复语法:

repeat="student.id as student in studentList | ..."