2 つの ui-select を持ち、ng-model のみを変更します (データは 1 つの mongodb コレクションからのものです):
<ui-select ng-model="flat.flatData.salesby" theme="bootstrap">
<ui-select-match placeholder="Sales by">
{{ $select.selected.ag_name }}
</ui-select-match>
<ui-select-choices repeat="uiag_name.ag_name as uiag_name in flat.ag track by $index | filter: $select.search">
<div ng-bind-html="uiag_name.ag_name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
最初の ui-select オプション (「option1」など) と 2 番目の「option2」に追加するにはどうすればよいですか?