使用ng-options,selectedCar将成为汽车对象
<select
ng-model="selectedCar"
ng-options="car as car.description for car in cars track by car.id">
</select>
使用ng-repeat,selectedCar不会成为汽车对象,需要此对象以供将来参考。我需要使用标题属性和ng-options不支持这个。如何使用ng-repeat保留汽车对象选项?
<select>
<option
ng-model="selectedCar"
ng-repeat="car in cars"
value="{{car}}"
title="{{car.description}}">{{car.description}}
</option>
</select>
答案 0 :(得分:0)