我将使用ui-select指令,我已将select.js
和select.css
添加到项目中,这是我在视图中的代码:
<ui-select ng-model="Client.selected" theme="bootstrap" style="width:300px;">
<ui-select-match placeholder="Select an item ...>{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="item in Client.rules | filter: $select.search">
<div ng-bind-html="item.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
Client.rules包含一个包含“id”和“name”的项目列表,这些项目将填充在控制器中。
运行页面后,我在控制台上没有错误,但是ui-select没有显示。