我已經完成了一些基本的角度過濾,但是我遇到了一個小問題,我不知道如何解決它。我有一個帶有輸入標題的表格。我希望每個輸入都按該列過濾表。問題是試圖動態地將ng-model設置爲相應的列名。我可以硬編碼,但我需要它動態。有沒有人做過這樣的事情?使用動態ng模型進行角度表過濾
編輯:有沒有辦法籤鍵從NG-重複搜索[關鍵]或東西,因爲我知道插不工作裏面NG-模型
這裏是代碼:
<table class="table table-striped">
<thead>
<tr ng-repeat="item in vm.students | limitTo:1">
<th ng-repeat="(key, val) in item">
{{key | format}}
</th>
</tr>
<tr ng-repeat="item in vm.students | limitTo:1">
<th ng-repeat="(key, val) in item">
<input type="text" ng-model='search.key'>
</th>
<tr>
</thead>
<tbody>
<tr ng-repeat="item in vm.students | filter:search.key ">
<td> {{item.id}}</td>
<td> {{item.car}}</td>
<td> {{item.payment_method}}</td>
<td> {{item.currency}}</td>
<td> {{item.city}}</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
是但這是硬編碼的,但我需要它是動態的,這意味着NG-模型來自JSON的關鍵。 –