我在我的项目中使用 angular ui select https://github.com/angular-ui/ui-select 。我正在使用ui-select
指令
我的代码:
<select class="input-small" ng-model="dashboard.style" ng-options="f for f in ['light','hpexp']" ng-change="styleUpdated()"></select>
我想使用 ui-select 所以我做到了,
<ui-select id="viewSelector"
class="viewSelector input-small"
ng-model="dashboard.style"
ng-options="f for f in ['light','hpexp']"
ng-change="styleUpdated()"
theme="selectize">
<ui-select-match placeholder="-- Select --">
{{$select.style}}</ui-select-match>
</ui-select>
但它不起作用。如何ng-options
使用ui-select
谢谢!!