ng-option中的默认选择选项

时间:2015-04-14 06:08:34

标签: angularjs selected ng-options

Codepen demo

需要将“Pune”作为默认选择选项。

这是question。我需要帮助知道如何在当前数据结构中为所选选项添加属性。

<div ng-app="storeLocater"  ng-controller="selectOptions">
  <select ng-model="cities" ng-options="store for (store,city) in stores"> 
  </select>
</div>

2 个答案:

答案 0 :(得分:0)

您需要在ng-model中设置默认值,在您的情况下为:cities

答案 1 :(得分:0)

试试这个:

 <select  ng-model="stores.Pune" ng-options="store for (store,city) in stores">
 </select>