如何在下拉菜單中獲取與所選選項關聯的對象(select
)?使用量角器在ngOptions中獲取選定選項
這裏是我的html:
<select ng-model="selSeason" ng-options="season as season.name for season in seasons"></select>
每個季節都具有多個屬性的對象,我需要得到有關所選對象(而不僅是它的文本或值)的對象。
我知道ng-repeat
有類似的信息(選擇第5個賽季的名稱):
element(by.repeater('season in seasons').row(4).column('name'));
是否有by.options()
選擇類似的東西?
感謝
您的解決方案無關與量角器。 –
只需測試一遍,再說一遍,就會返回整個對象,我已經測試過了。 :) –