私は(https://github.com/angular-ui/ui-select/) で使用angularjs
します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
いくつかある可能性があるため、それでは十分ではありません同じ価値のアイテム...
何か案が?
ありがとう :)