使用ng-options添加所有选项

时间:2014-10-06 15:06:33

标签: angularjs ng-options

我目前正在过滤数据集以检索每个唯一名称并将其放入下拉菜单中。

  <select ng-model="Employee" ng-options="order.SPerKey as order.SPerName for order in data.Root.Orders | unique:'SPerKey'"> </select> 

我想在此下拉列表中添加一个名为&#34; All&#34;所以我的下拉菜单将以All选项开始,然后在此之后添加过滤后的名称。

1 个答案:

答案 0 :(得分:9)

只需在All

中添加select选项即可
<select ng-model="Employee" ng-options="order.SPerKey as order.SPerName for order in ata.Root.Orders  unique:'SPerKey'"> 
   <option value="">All</option>
</select>