在Angular中使用分页获取排序的Mat-Table数据

时间:2018-12-02 15:23:58

标签: angular sorting pagination mat-table

我有一个使用排序和分页的垫子表。我有一个要求,在每次对数据进行排序时都需要获取排序的数据。 我在这里有一个示例:Mat-table with pagination

在component.ts中,我有以下一行获取排序的数据:

this.dataSource.connect().subscribe(d => this.renderedData = d);中的

ngOnInit,但是它只会在mat-paginator中获得选定的行数。我想获取所有数据。有什么好方法吗?

renderedData对象显示在页面顶部。 谢谢

1 个答案:

答案 0 :(得分:1)

我认为此功能不可用。看一下this SOF问题,虽然我无法解决它,但这可能会有帮助。否则,我认为您可能需要将此功能发布到GitHub上。