首页 文章

使用MatTableDataSource在mat-table中不显示远程dataSource

提问于
浏览
0

我试图从远程服务器实现 mat-tabledataSource 的组件 . 但是数据在表格中看不到 .

HTML

<div class="mat-elevation-z8">
  <mat-form-field>
    <input matInput (keyup)="applyFilter($event.target.value)" placeholder="Filter">
  </mat-form-field>

  <table mat-table [dataSource]="dataSource" matSort style="width: 100%;">

    <ng-container matColumnDef="accountType">
      <th mat-header-cell *matHeaderCellDef mat-sort-header> Account Type </th>
      <td mat-cell *matCellDef="let e"> {{e.accountType}} </td>
    </ng-container>

    <ng-container matColumnDef="id">
      <th mat-header-cell *matHeaderCellDef mat-sort-header> ID </th>
      <td mat-cell *matCellDef="let e"> {{e.id}} </td>
    </ng-container>

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

TS

import { Component, OnInit, ViewChild } from '@angular/core';
import { MatPaginator, MatTableDataSource, MatSort } from '@angular/material';

import { HeadAccount } from '../../Data/HeadAccount';
import { HeadAccountsService } from '../../Services/head-accounts.service';

import { AfterViewInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';

@Component({
  selector: 'app-head-accounts',
  templateUrl: './head-accounts.component.html',
  styleUrls: ['./head-accounts.component.css']
})
export class HeadAccountsComponent implements OnInit {

  constructor(private haser: HeadAccountsService) { }

  ngOnInit() {
    this.gets();
  }

  ngAfterViewInit() {
    this.dataSource.paginator = this.paginator;
    this.dataSource.sort = this.sort;
  }

  has: HeadAccount[];
  dataSource = new MatTableDataSource(this.has);
  columnsToDisplay: string[] = ['accountType', 'id'];
  @ViewChild(MatPaginator) paginator: MatPaginator;
  @ViewChild(MatSort) sort: MatSort;

  gets(): void {
    this.haser.gets()
      .subscribe(has => this.has = has);
  }
  applyFilter(filterValue: string) {
    this.dataSource.filter = filterValue.trim().toLowerCase();
  }
}

但是,如果我将 dataSource 直接更改为 has ,如 [dataSource]="has" 数据是可见的,但其他功能如 pagination, sort, filter .

在App Module中, MatTableModule, MatPaginatorModule, MatSortModule 这些是导入和导出

2 回答

  • 0

    将代码从 ngAfterViewInit() 移动到服务的 .subscribe 为我工作 .

    工作在下面的代码片段 .

    this.haser.gets()
      .subscribe(has => {
        this.dataSource = new MatTableDataSource(has);
        this.dataSource.paginator = this.paginator;
        this.dataSource.sort = this.sort;
      });
    
  • 0

    我导入了lodash库并做了_.castArray,我想[...数据]也可以工作,但我选择了lodash路由 . 我还必须在setTimeout中包装我的排序和分页器......但这可能不适用于你 .

    this.dataSource = new MatTableDataSource(_.castArray(data));
        setTimeout(()=> this.dataSource.sort = this.matSort);
        setTimeout(()=> this.dataSource.paginator = this.paginator);
    

相关问题