【问题标题】:How to add pagination in angular material table that bind to API response如何在绑定到 API 响应的角度材料表中添加分页
【发布时间】:2022-04-29 19:38:11
【问题描述】:

我是角度新手。在我的项目中显示的产品列表及其正常工作。

我的 HTML 代码如下:

<table mat-table [dataSource]="list_product" style="width: 20%;">
    <!-- id Column -->
    <ng-container matColumnDef="id" style="width: 20%;">
        <th mat-header-cell *matHeaderCellDef style="align-items: center;"> id </th>
        <td mat-cell *matCellDef="let list_product"> {{list_product.id}} </td>
    </ng-container>

    <!-- description Column -->
    <ng-container matColumnDef="description">
        <th mat-header-cell *matHeaderCellDef> Name </th>
        <td mat-cell *matCellDef="let list_product"> {{list_product.description}} </td>
    </ng-container>

    <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
    <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
<mat-paginator [pageSizeOptions]="[5, 10, 20]" showFirstLastButtons></mat-paginator>

我的 TypeScript 代码是 -

import { Component, OnInit,ViewChild } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { analyzeAndValidateNgModules } from '@angular/compiler';
import { MatPaginator} from '@angular/material/paginator';
import { MatTableDataSource} from '@angular/material/table';

@Component({
    selector: 'app-basic',
    templateUrl: './basic.component.html',
    styleUrls: ['./basic.component.scss']
})
export class BasicComponent implements OnInit {

    public list_product:any=[];
    displayedColumns: string[] = ['id', 'description'];
    @ViewChild(MatPaginator) paginator: MatPaginator;

    constructor(private http:HttpClient) { }

    ngOnInit(): void {
        this.get_data();
        this.list_product.paginator = this.paginator;
    }

    get_data(){
        this.http.get<any>("http://localhost:3000/listp").subscribe(
            res => this.list_product = res
        )
    }
}

分页不起作用,并显示所有列表。分页按钮在 html 文件中不起作用。

【问题讨论】:

    标签: angular pagination angular-material


    【解决方案1】:

    对于客户端分页,MatTableDataSource 具有内置的分页、排序和过滤功能。

    按照以下步骤操作 -

    1. 使用MatTableDataSource 类型作为dataSource 并使用空数组对其进行初始化
    2. 收到数据后设置MatTableDataSourcedata 属性
    3. 使用@ViewChild 获取表的paginator 的引用
    4. 一旦视图初始化,实现AfterViewInit 以设置MatTableDataSourcepaginator 属性

    您的最终组件代码应该类似于 -

    export class BasicComponent implements OnInit, AfterViewInit {
        
        public list_product = new MatTableDataSource<any>([]);  // <-- STEP (1)
        displayedColumns: string[] = ['id', 'description'];
        @ViewChild(MatPaginator) private paginator: MatPaginator;  // <-- STEP (3)
    
        constructor(private http:HttpClient) { }
    
        ngOnInit(): void {
            this.get_data();
        }
    
        get_data(){
            this.http.get<any>("http://localhost:3000/listp").subscribe(
                res => this.list_product.data = res  // <-- STEP (2)
            );
        }
        
        ngAfterViewInit(): void {
            this.list_product.paginator = this.paginator;  // <-- STEP (4)
        }
    }
    

    您应该浏览the documentation 以了解更多详情。

    【讨论】:

      猜你喜欢
      • 2020-06-10
      • 1970-01-01
      • 2022-08-05
      • 1970-01-01
      • 2019-05-13
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-10-26
      相关资源
      最近更新 更多