Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は ui-select を使用しており、選択した項目を ui-select コントロールの外で使用したいと考えています。{{$select.selected.name}} を使用してみましたが、うまくいきませんでした。ng-repeats フィルターで再利用したい。
解決しました!
利用した
<ui-select ng-model="listOfCategoryTypes.ID" ...
{{listOfCategoryTypes.ID}} を ui-select の外で使用すると、JSON オブジェクトが返されます。伸ばすと
{{listOfCategoryTypes.ID.Name}}
.Name (名前というプロパティがあります) を使用すると、プロパティの値を取得できます!