我正在檢索無序列表並綁定到此處的下拉菜單,但在實例化時我希望能夠在下拉列表中選擇第0個項目。 ng-init="selectedTreatment=treatments[0]"
不起作用,因爲列表在視圖中被重新排序。角度下拉,按索引選擇
<select ng-model="selectedTreatment"
ng-options="option.TreatmentName for option in (treatments | orderBy : 'TreatmentName')">
</select>
有沒有一種方法可以做到這一點?
由於數據使用視圖上的orderBy過濾器重新排序。數據中的第0項不是下拉菜單中的第0項。所以這是行不通的。 – gunwin