For the need of a directive i'm writing, i have to construct dynamically the ng-options expression. Here is what i tried.
In my directive:
// ... scope.labelProperty = 'name';
scope.selectOptions = "l." + scope.labelProperty + " for l in list";
In my html template:
<select class="form-control"
ng-model="selected.available"
ng-options="{{ selectOptions }}"
multiple
size="5"></select>
This results in ng-options taking the correct expression "l.name for l in list" but options dont display.
Please, any idea ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…