<ul ng-repeat="books in companyBookData.Bookparts" style="float: left">
<li>
<select
name="Zone"
id="Zone"
ng-options=" ZoneType.Description for ZoneType in books.ZoneTypes"
ng-model="ZoneType"
ng-init="ZoneType=books.ZoneTypes[0]">
</select>
</li>
<ul>
我有下拉菜單,它使用ng-repeat生成,如上所示。我將至少有4個下拉列表和最多100個下拉列表,並且我明白ng-repeat會在每次迭代中創建一個新的範圍。我如何設置每個下拉菜單的默認值?我可以訪問由ng-repeat生成的所有範圍嗎?我如何設置默認值?使用ng-repeat設置下拉菜單的默認設置
嘗試像ul ng-repeat =「booksBookData.Bookparts」中的ng-controller =「MyCtrl」,您可以參考每本書 – Whisher
@Whisher非常感謝!對我來說工作得很好。 – GeekBoy