2

我将使用 ui-select 指令,我已经添加select.jsselect.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 没有显示。

4

0 回答 0