ng-options によって入力された選択があります。
<select id="personId" name="personId" class="selectpicker"
ng-model="person" ng-options="person.Surname for person in persons track by person.Id">
<option value="">Introduce yourself...</option>
</select>
しかし、表示する必要があるのは、選択自体ではなく、それに基づくブートストラップ選択 (div ベースのドロップダウン リストを作成するプラグイン) です。$('.selectpicker').selectpicker('refresh')
そのため、選択したアイテムが更新されたときに呼び出す必要があります。それを行うことができるangularjs拡張ポイントはありますか?