gpt4 book ai didi

angularjs - 仅将过滤后的数据导出到 Angular 智能表中的 csv 中

转载 作者:行者123 更新时间:2023-12-01 02:06:46 27 4
gpt4 key购买 nike

我们已经使用 Angular 智能表实现了一个报告表。当用户使用 st-search 应用搜索条件时,我们需要将所有项目导出到 csv。我们使用了 ng-csv 指令进行导出。使用st-table数组集合时,只获取第一页数据。也就是说过滤后共有7条记录,第一页显示5项,仅导出此数据(5项)。如何导出所有过滤数据?

 <table class="table table-striped" st-table="displayed">
<thead>
<tr>
<th st-sort="firstName">first name</th>
<th st-sort="lastName">last name</th>
<th st-sort="birthDate">birth date</th>
<th st-sort="balance">balance</th>
<th >email</th>
</tr>
<tr>
<th>
<input st-search="firstName" placeholder="search for firstname" class="input-sm form-control" type="search"/>
</th>
<th colspan="4">
<input st-search placeholder="global search" class="input-sm form-control" type="search"/>
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="row in displayed">
<td>{{row.firstName | uppercase}}</td>
<td>{{row.lastName}}</td>
<td>{{row.birthDate | date}}</td>
<td>{{row.balance | currency}}</td>
<td><a ng-href="mailto:{{row.email}}">email</a></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="5" class="text-center">
<div st-pagination="" st-items-by-page="5" st-displayed-pages="10"></div>
</td>
</tr>
</tfoot>

最佳答案

您可以通过表 Controller api 访问过滤后的集合。所以你只需要创建一个需要 stTable Controller 的指令:

.directive('stExport',function(){
return {
require:'^stTable',
link:function(scope, element, attr,ctrl){
element.bind('click',function(){
alert(ctrl.getFilteredCollection().length);
})
};
}

have a look at that running example

关于angularjs - 仅将过滤后的数据导出到 Angular 智能表中的 csv 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31987451/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com