【问题标题】:Remote dataSource not displayed in mat-table with MatTableDataSource使用 MatTableDataSource 未在 mat-table 中显示远程数据源
【发布时间】:2018-10-02 12:19:24
【问题描述】:

我正在尝试使用远程服务器的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"data 是可见的,但其他功能例如pagination, sort, filter

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

【问题讨论】:

    标签: typescript angular6 angular-material-6


    【解决方案1】:

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

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

    【讨论】:

      【解决方案2】:

      将代码从 ngAfterViewInit() 移动到服务的 .subscribe 对我有用。

      在sn-p下面工作。

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

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2020-11-20
        • 1970-01-01
        • 2018-06-19
        • 2021-02-27
        • 2019-06-03
        • 2020-03-09
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多