从一个组件重定向到另一个也具有MatTableDataSource的组件后,角材料MatTableDataSource没有更新

时间:2019-11-18 08:23:00

标签: angular angular-material angular-material-table

我有2个Angular模块:

  • 学生
  • 课程

在课程内部,我有一个要显示的组件(CourseListComponent),它嵌套在学生组件(StudentDetailsComponent)中。因此,我需要从“课程”模块中导出该组件:

console.log('A');
setTimeout(()=>{
    console.log("B")
},1500);

setTimeout(()=>{
        console.log("C")
    },1000);

console.log('D');

我还需要在Student中导入课程模块:

@NgModule({
    declares [ CourseListComponent ],
    exports: [ CourseListComponent ]
})

在StudentListComponent内部,我有一个MatTable和MatTableDataSource,其中包含一些数据:

@NgModule({
    declares: [ StudentListComponent, StudentDetailsComponent ],
    imports: [ CourseModule ]
})

当我切换到StudentDetailsComponent时,我想显示该学生所注册课程的列表。我也想在MatTable中进行此操作:

this.students = this.route.snapshot.data.students;
this.dataSource = new MatTableDataSource(this.students);

但是在页面加载时,它仅显示空表。我在控制台中没有任何错误,只是一个空表。

有人知道如何解决此问题吗?

谢谢!

这是HTML:

this.courses = this.route.snapshot.data.courses;         // returns correct courses
this.dataSource = new MatTableDataSource(this.courses);  // changes filteredData

在CourseListComponent中:

<table mat-table [dataSource]="dataSource" matSort class="mat-elevation-z8" matSort>
    <ng-container matColumnDef="id">
        <th mat-header-cell *matHeaderCellDef mat-sort-header class="aligned-columns">
            {{ 'COURSE-LIST.ID' | translate }}
        </th>
        <td mat-cell *matCellDef="let course"> 
            {{course.id}} 
       </td>
    </ng-container>
    <ng-container matColumnDef="name">
        <th mat-header-cell *matHeaderCellDef mat-sort-header>
            {{ 'COURSE-LIST.NAME' | translate }}
        </th>
        <td mat-cell *matCellDef="let course">
            {{ course.name}}
        </td>
    </ng-container>
    <ng-container matColumnDef="year">
        <th mat-header-cell *matHeaderCellDef mat-sort-header>
            {{ 'COURSE-LIST.YEAR' | translate }}
        </th>
        <td mat-cell *matCellDef="let course"> 
            {{ course.year}} 
        </td>
    </ng-container>
    <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
</table>

和模型:

displayedColumns: string[] = ['id', 'name', 'year'];
courses: ICourse[];

1 个答案:

答案 0 :(得分:0)

确保html正确。您是否在动态生成列?确保列名与课程字段相同。将它分配给课程后,您是否尝试过打印this.datasource?

首先执行所有这些操作。

也是一个问题,这些表是2个单独的表,分为2个单独的组件吗?

尝试

<pre>
  {{ dataSource.data | json }}
</pre>

在餐桌前

您应该在表格之前看到您的数据。

它应该看起来像:

[
  {
    "id": 1,
    "name": "fasdfa",
    "year": 1992
  },
  {
    "id": 2,
    "name": "fasdf",
    "year": 2002
  },
  {
    "id": 3,
    "name": "Hydrfasdfogen",
    "year": 2034
  },
  {
    "id": 4,
    "name": "fas",
    "year": 2004
  },
  {
    "id": 5,
    "name": "afsdafasd",
    "year": 2014
  },
]

如果没有相同的结构就是问题所在。或如果该字段为空,则说明您无法正确提供数据。