mat-paginator停止,因此我们可以转到服务器

时间:2019-03-15 15:51:25

标签: angular

我正在使用Angular 7和mat-paginator。我想阻止它传播/工作,因为我想通过搜索(排序,过滤器,pageNumber,.ect)去服务器。

所以下面的内容可以捕获该事件,但是我不知道如何阻止它分页?

用于分类的东西,如何停止它,以便可以转到服务器?

name.component.html

<mat-paginator [pageSizeOptions]="[5, 10, 25, 100]" [pageSize]="5" [length]="totalLength" (page)="pageChanged($event)"></mat-paginator>

name.component.ts

pageChanged(e) {
 //{previousPageIndex: 2, pageIndex: 1, pageSize: 2, length: 10}
 console.log(e);
 //e.stopPropagation();
}

0 个答案:

没有答案