0
私はangularjs ui-selectを使用しています。 バインドではデフォルトで複数のドロップダウンが必要ですが、問題は同じ動作をする必要があることです単一の選択も。anglejs ui-selectは配列にバインドする
$scope.mdf.options = [{ id: 1, name: 'name1' },{ id: 2, name: 'name2' }];
<ui-select ng-model="wrap.piece.original.selections_hash[mdf.id]" close-on-select="false" title="mdf.modifier.display" ng-if="mdf.modifier.max == 1">
<ui-select-match>{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="option.id as option in mdf.options">
<span ng-bind="option.name">
</span>
</ui-select-choices>
</ui-select>
ので、ユーザは、例えばNAME2を選択したとき、私はに更新するために私のモデルを必要とする[2]の代わりに2 のどのように私はそれを達成することができますか?私はui-selectでそれを行うことはできますか?私は角度選択でそれを行うことはできませんか?