我对angularjs很新。现在我有一个数据表和一个过滤器。在过滤器中,我有2个选择:列和值。选择一个列并使用该值过滤。我的想法如下:
<tr ng-repeat="f in filters">
<td>
<select ng-model="f.column"
ui-select2
placeholder="Column"
class="form-control input-sm"
ng-change="filterChange()">
<option ng-repeat="c in params.columns" value="{{c}}">{{elementMap[c].label}}</option>
</select>
</td>
<td>
<select class="form-control input-sm"
ui-select2
ng-model="f.value"
ng-change="filterChange()">
<option ng-repeat="row in data.results" value="{{row.(f.column)}}">{{row.(f.column)}}</option>
</select>
</td>
</tr>
f.column绑定到我拿起的列名。 我需要像{{row。(f.column)}}这样的angularjs无法识别的东西。 有没有办法解决它?
感谢