javascript - 错误类型错误 : Cannot set property 'paginator' of undefined

标签 javascript angular html typescript angular-material

我正在使用表格 Angular Material 创建表格 作为引用,我正在使用这个例子 https://material.angular.io/components/table/examples

这是我目前所拥有的:

HTML

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

  <div class="mat-elevation-z8">
    <table mat-table [dataSource]="dataSource" matSort>


      <ng-container matColumnDef="name">
        <th mat-header-cell *matHeaderCellDef mat-sort-header> Name </th>
        <td mat-cell *matCellDef="let row"> {{row.name}} </td>
      </ng-container>


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


      <ng-container matColumnDef="release">
        <th mat-header-cell *matHeaderCellDef mat-sort-header> Release</th>
        <td mat-cell *matCellDef="let row"> {{row.first_air_date}} </td>
      </ng-container>


      <ng-container matColumnDef="description">
        <th mat-header-cell *matHeaderCellDef mat-sort-header> Description </th>
        <td mat-cell *matCellDef="let row" [style.color]="row.color"> {{row.overview}} </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, 25, 100]"></mat-paginator>
  </div>

组件.ts

import { Component, ViewChild, OnInit } from '@angular/core';
import { MoviesService } from '../movies.service';
import { MatPaginator, MatSort, MatTableDataSource } from '@angular/material';
import { DatatableComponent } from '@swimlane/ngx-datatable';

@Component({
  selector: 'app-tv-shows',
  templateUrl: './tv-shows.component.html',
  styleUrls: ['./tv-shows.component.scss']
})
export class TvShowsComponent implements OnInit {
  displayedColumns: string[] = ['name', 'id', 'release', 'description'];
  dataSource: any;
  @ViewChild(DatatableComponent) table: DatatableComponent;
  constructor(private moviesService: MoviesService) {
    this.moviesService.getPopularTVShows().subscribe(res => {
      this.dataSource = res.results;
    });
  }

  @ViewChild(MatPaginator) paginator: MatPaginator;
  @ViewChild(MatSort) sort: MatSort;

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

  applyFilter(filterValue: string) {
    this.dataSource.filter = filterValue.trim().toLowerCase();

    if (this.dataSource.paginator) {
      this.dataSource.paginator.firstPage();
    }
  }
}

当我运行我的应用程序时,数据完美地显示在表格中,但出现以下错误:

ERROR TypeError: Cannot set property 'paginator' of undefined

So nothing works at all neither sorting , filtering or pagination

我需要一些帮助:

我在上面的代码中做错了什么?任何帮助将不胜感激。

最佳答案

错误表明当 this.dataSource 仍然是 undefined 时,您正在尝试分配 this.dataSource.paginator。在初始化后执行作业。

此外,当你想使用分页器、排序器或过滤器时,你必须为它使用 MatTableDataSource 类。将原始数据用作您的 dataSource 是不够的:

ngOnInit() {
  this.moviesService.getPopularTVShows().subscribe(res => {
    // Use MatTableDataSource for paginator
    this.dataSource = new MatTableDataSource(res.results);
                          ^^^^^^^^^^^^^^^^^^
    // Assign the paginator *after* dataSource is set
    this.dataSource.paginator = this.paginator;
    this.dataSource.sort = this.sort;
  });
}

关于javascript - 错误类型错误 : Cannot set property 'paginator' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51527623/

相关文章:

angular - 如何使用 Angular 2 将当前日期转换为 YYYY-MM-DD 格式

angular - 如何删除 Angular 4 中特定页面的 Global styles.css

html - 用于复制具有样式的页面元素的附加组件

javascript - 循环时更改 Javascript 增量的速度?

javascript - _ 和数组缩减的作用

javascript - PHP循环与html表单和javascript提交按钮仅提交循环中的最后一个表单

php - 在另一个下设置一个 div

javascript - 在运行的nodejs服务器上找不到socket.io-client

twitter-bootstrap - 如何使用 ngFor 和 bootstrap 4 创建新的一排卡片

javascript - Php-javascript 代码只工作一次