私はangularjsが初めてです。これで、データ テーブルとフィルターができました。フィルターには、select:column と value が 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 は、ピックアップした列名にバインドされます。angularjs が認識しない {{row.(f.column)}} のようなものが必要です。それを回避する方法はありますか?
ありがとう