使用ng-model和ng-options屬性我綁定了select html標記。 它正確綁定選項中的所有數據,但一個空選項首先與「」綁定。 我想刪除這個空選項採用了棱角分明Angular JS選擇標記模型提供了一個空白選項問題
<select class="ng-pristine UserGroups selectGroupClass" ng-model='groupList' required ng-options='item.name for item in groupOptions track by item.name'></select>
$scope.groupOptions = [{ name: "What's Hot", value: 'latest' }, { name: 'Trending', value: 'popular' }];
如何groupOptions看起來像 –