81

我是 AngularJS 的新手。我搜索了很多,但它并没有解决我的问题。

我第一次在选择框中得到一个空白选项。

这是我的 HTML 代码

<div ng-app="MyApp1">
    <div ng-controller="MyController">
        <input type="text" ng-model="feed.name" placeholder="Name" />
        <select ng-model="feed.config">
            <option ng-repeat="template in configs">{{template.name}}</option>
        </select>
    </div>
</div>

JS

var MyApp=angular.module('MyApp1',[])
MyApp.controller('MyController', function($scope) {
    $scope.feed = {};

      //Configuration
      $scope.configs = [
                                 {'name': 'Config 1',
                                  'value': 'config1'},
                                 {'name': 'Config 2',
                                  'value': 'config2'},
                                 {'name': 'Config 3',
                                  'value': 'config3'}
                               ];
      //Setting first option as selected in configuration select
      $scope.feed.config = $scope.configs[0].value;
});

但这似乎不起作用。我怎样才能解决这个问题?这是JSFiddle 演示

4

12 回答 12

98

供参考:为什么 angularjs 在 select 中包含一个空选项

当传递给的一组选项中不存在option由 引用的值时,将生成空值。这样做是为了防止意外选择模型:AngularJS 可以看到初始模型未定义或不在选项集中,并且不想自行决定模型值。ng-modelng-options

简而言之:空选项意味着没有选择有效的模型(有效的意思是:从选项集中)。您需要选择一个有效的模型值来摆脱这个空选项。

像这样更改您的代码

var MyApp=angular.module('MyApp1',[])
MyApp.controller('MyController', function($scope) {
  $scope.feed = {};

  //Configuration
  $scope.feed.configs = [
    {'name': 'Config 1',
     'value': 'config1'},
    {'name': 'Config 2',
     'value': 'config2'},
    {'name': 'Config 3',
     'value': 'config3'}
  ];
  //Setting first option as selected in configuration select
  $scope.feed.config = $scope.feed.configs[0].value;
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div ng-app="MyApp1">
  <div ng-controller="MyController">
    <input type="text" ng-model="feed.name" placeholder="Name" />
    <!-- <select ng-model="feed.config">
<option ng-repeat="template in configs">{{template.name}}</option>
</select> -->
    <select ng-model="feed.config" ng-options="template.value as template.name for template in feed.configs">
    </select>
  </div>
</div>

工作 JSFiddle 演示

更新(2015 年 12 月 31 日)

如果您不想设置默认值并想删​​除空白选项,

<select ng-model="feed.config" ng-options="template.value as template.name for template in feed.configs">
      <option value="" selected="selected">Choose</option>
</select>

并且在 JS 中不需要初始化值。

$scope.feed.config = $scope.feed.configs[0].value;

于 2013-12-23T07:35:00.117 回答
57

虽然上述所有建议都有效,但有时我在最初进入屏幕时需要有一个空选择(显示占位符文本)。因此,为了防止选择框在列表的开头(或有时在结尾)添加这个空选择,我使用了这个技巧:

HTML 代码

<div ng-app="MyApp1">
    <div ng-controller="MyController">
        <input type="text" ng-model="feed.name" placeholder="Name" />
        <select ng-model="feed.config" ng-options="template.value as template.name for template in feed.configs" placeholder="Config">
            <option value="" selected hidden />
        </select>
    </div>
</div>

现在您已经定义了这个空选项,所以选择框很高兴,但您将其隐藏。

于 2015-06-20T21:32:47.010 回答
21

这是一个更新的小提琴:http: //jsfiddle.net/UKySp/

您需要将初始模型值设置为实际对象:

$scope.feed.config = $scope.configs[0];

并将您的选择更新为如下所示:

<select ng-model="feed.config" ng-options="item.name for item in configs">
于 2013-12-23T07:41:38.613 回答
14

$first另一种解决方法是利用:ng-repeat

用法:

<select ng-model="feed.config">
    <option ng-repeat="template in configs" ng-selected="$first">{{template.name}}</option>
</select>

参考资料

ngSelectedhttps ://docs.angularjs.org/api/ng/directive/ngSelected

$firsthttps ://docs.angularjs.org/api/ng/directive/ngRepeat

干杯

于 2015-11-09T07:25:39.453 回答
5

有多种方法,例如-

<select ng-init="feed.config = options[0]" ng-model="feed.config"
        ng-options="template.value as template.name for template in feed.configs">
</select>

或者

$scope.feed.config = $scope.configs[0].name;
于 2013-12-23T07:39:59.073 回答
3

这是一种解决方法,但就像一种魅力。只需添加<option value="" style="display: none"></option>作为填充物。像:

<select size="4" ng-model="feed.config" ng-options="template.value as template.name for template in feed.configs">
       <option value="" style="display: none"></option>
</select>
于 2016-10-25T17:27:28.670 回答
3

如果您只想删除空格,请使用 ng-show 即可!无需在 JS 中初始化值。

<select ng-model="SelectedStatus" ng-options="x.caption for x in statusList">
    <option value="" ng-show="false"></option>
</select>`
于 2017-04-10T10:06:04.970 回答
2

像这样更改您的代码。您忘记了选项内部的值。在分配 ng-model 之前。它必须有一个值。只有这样它才不会得到未定义的值。

<div ng-app="MyApp1">
<div ng-controller="MyController">
    <input type="text" ng-model="feed.name" placeholder="Name" />
     <select ng-model="feed">
        <option ng-repeat="template in configs" value="template.value">{{template.name}}    
 </option>
    </select>
    </div>
 </div>

JS

 var MyApp=angular.module('MyApp1',[])
 MyApp.controller('MyController',function($scope) {  
      $scope.feed = 'config1';      
      $scope.configs = [
         {'name': 'Config 1', 'value': 'config1'},
         {'name': 'Config 2', 'value': 'config2'},
         {'name': 'Config 3', 'value': 'config3'}
      ];
 });
于 2015-12-12T18:44:14.987 回答
1

使用ng-value代替value

$scope.allRecs = [{"text":"hello"},{"text":"bye"}];
$scope.X = 0;

然后在 html 文件中应该是这样的:

<select ng-model="X">  
     <option ng-repeat="oneRec in allRecs track by $index" ng-value="$index">{{oneRec.text}}</option>
</select>
于 2019-03-19T04:44:32.213 回答
0

对我来说,这个问题的答案是使用<option value="" selected hidden />@RedSparkle 提出的,加上ng-if="false"在 IE 中的工作。

所以我的完整选择是(与我之前写的有所不同,但这并不重要,因为 ng-if):

<option value="" ng-if="false" disabled hidden></option>

于 2019-03-21T15:25:07.393 回答
0

最后它对我有用。

<select ng-init="mybasketModel = basket[0]" ng-model="mybasketModel">
        <option ng-repeat="item in basket" ng-selected="$first">{{item}}</option>
</select>


于 2019-10-24T21:56:41.903 回答
-1

还要检查您是否有任何虚假值。如果您确实有虚假值,Angularjs 将插入一个空选项。由于虚假的价值,我挣扎了 2 天。我希望它对某人有所帮助。

我有 [0, 1] 选项,最初我将模型设置为 0,因为它插入了空选项。解决方法是 ["0" , "1"]。

于 2016-10-24T06:41:08.593 回答