我正在創建角度選擇標籤。根據我已閱讀的許多網站和一些帖子,它說當使用選擇標籤不在選項標籤上使用「ng-repeat」,但在選擇標籤上使用「ng-options」時,這就是我如何設置它向上。我的問題是,我想默認選擇一個特定的選項標籤,我如何使用此方法設置選定的屬性?角選擇標籤
<select class="form-control" ng-model="selected_group" ng-change="new_group($event)" ng-options="group as (group.group_name | decodeuri) for group in groups"></select>
如何?我試過ng-init =「selected_group = 1」,這是行不通的。 –
不通過ng-init。在您的控制器中,執行像'$ scope.selected_group = $ scope.groups [0];' – bbrown
這樣的操作,不應該像@ LJ.Wizard所示的那樣使用ng-init:請參閱文檔中的紅色警告 - https: //docs.angularjs.org/api/ng/directive/ngInit – bbrown