我angularjs
与ui-select
(https://github.com/angular-ui/ui-select/) 一起使用
我有这个代码:
<ui-select tagging="addTagging" tagging-tokens="ENTER" ng-change="sourceChanged()" ng-model="sender" theme="bootstrap" sortable="true" ng-disabled="disabled">
<ui-select-match>{{$select.selected.name}}</ui-select-match>
<ui-select-choices data-id="$index" repeat="item.name as item in places | filter:$select.search">
{{item.name}}
</ui-select-choices>
</ui-select>
在sourceChanged
函数内部,我想知道所选项目的索引..现在我只有值(scope.sender
)..
我可以在数组中搜索值,places
但这对我来说还不够好,因为有可能会有几个具有相同价值的物品...
任何想法?
谢谢 :)