在我的控制器中,我创建了一个年份列表的动态名称,具体取决于生成此列表的ng表的所选行的索引/ uuid / id。
vm["years"+id]= getYears();
我想在ui-select中调用此列表 所以,我想要像这样:
<ui-select ng-model="params.filter()[name]" theme="bootstrap">
<ui-select-match placeholder="{{'all' | translate}}">{{$select.selected}} </ui-select-match>
<ui-select-choices
class="duplicate-dropdown-small" scrolly="ctrl.addToLimit()"
repeat="option in ctrl.years{{ ctrl.id }} | filter: $select.search">
<div ng-bind-html="option"></div>
</ui-select-choices> </ui-select>
适用于ng-table,但在重复的情况下,我收到以下错误
语法错误:令牌&#39; {&#39;是一个意想不到的
有没有办法获得我想要的动态列表名称?
提前谢谢。
亲切的问候,