我正在尝试在一个简单的网格上实现无限类型滚动。html是这样的:
<div class="text-center" style="background-color:#eee;">
<H2 style="margin-top:0px;">Customer List</H2>
<hr />
Search: <input ng-model="customerVm.search" /> <br /> <br />
<table class="table table-hover" ui-scroll-viewport style="height:500px;">
<tbody>
<tr ui-scroll="customer in customerVm.datasource" ng-model="customerVm.gridResult" "buffer-size="10">
<td>
</tbody>
</table>
</div>
我想根据搜索框模型过滤网格中的内容,看起来很简单。我通常只会将以下内容与 ng-repeat 一起使用
<tr ng-repeat="customer in customerVm.datasource | filter:customerVm.search" ng-model="customerVm.gridResult" "buffer-size="10">
<td>{{customer.customername}}</td>
</tr>
但是,使用“ui-scroll”而不是 ng-repeat 我收到一个错误
Expected uiScroll in form of '_item_ in _datasource_' but got 'customer in customerVm.datasource | filter:customerVm.search'
我是否遗漏了有关如何使用 Angular-ui 滚动过滤数据的内容?我在滚动库中看到导致问题的行,如果还有其他问题,则会引发错误
item in datasource
这让我觉得在 Angular-ui 滚动中过滤是不可能的。有什么想法吗?