过去几周我一直在使用 AngularJS,而真正困扰我的一件事是,即使在尝试了http://docs.angularjs.org/api/ng规范中定义的所有排列或配置之后.directive:select,我仍然得到一个空选项作为选择元素的第一个子元素。
这里是玉:
select.span9(ng-model='form.type', required, ng-options='option.value as option.name for option in typeOptions');
这里是控制器:
$scope.typeOptions = [
{ name: 'Feature', value: 'feature' },
{ name: 'Bug', value: 'bug' },
{ name: 'Enhancement', value: 'enhancement' }
];
最后,这是生成的 HTML:
<select ng-model="form.type" required="required" ng-options="option.value as option.name for option in typeOptions" class="span9 ng-pristine ng-invalid ng-invalid-required">
<option value="?" selected="selected"></option>
<option value="0">Feature</option>
<option value="1">Bug</option>
<option value="2">Enhancement</option>
</select>
我需要做什么才能摆脱它?
PS:没有这个也可以,但是如果你使用 select2 而没有多重选择,它看起来很奇怪。