我ng-option
在我的页面中添加元素。
这是它在模板中的外观:
<select ng-model="selectedItem" ng-options="item.name for item in items track by item.id"></select>
在控制器中:
$scope.selectedItem = {};
$scope.items = [{name: 'one', id: 30 },{ name: 'two', id: 27 },{ name: 'threex', id: 50 }];
在我的项目中,我从一些查找表中获取范围项。
我需要添加到 ng-select 这个元素的值-1
:
<option value="-1">- manual -</option>
它看起来像这样:
<select ng-model="selectedItem" ng-options="item.name for item in items track by item.id">
<option value="-1">- manual -</option>
</select>
这是Plunker。
但我没有看到视图manual
选项。
知道为什么我在视图中看不到手动选项吗?