簡體   English   中英

角材料表數據源未呈現

[英]Angular Material table dataSource not being rendered

我可以使dataSource2(來自角度庫的示例)正確顯示,但是dataSource變量(我的數據源)無法呈現。

我不知道為什么會這樣。 我已經使兩個數據源看起來相似,並且我使用角度材質庫的方式也相似。 我需要一些輸入; 材料庫是這樣工作的嗎?

參見圖片-dataSource上的消息未呈現

我的.ts文件

import { Component, OnInit, Input } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { BackendcallingService } from './../backendcalling.service';
import { AvailableRolesEntity, RoleFunctionsEntity, ChildRolesEntity } from 'src/models/AvailableRoles.model';
import { MatTableDataSource } from '@angular/material';

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


  jsondata: any;
  jsonifiedrole: any;
  availableRoles: any;
  jsonifiedavailableRoles: any[];

  dataSource: any = [];
  dataSource2: any =[];

displayedColumns: string[] = ['position', 'name', 'weight', 'symbol']; // columns for example dataSource2
        columnsToDisplay = ['name', 'priority', 'editUrl', 'active', 'createdId'];  // columns for my dataSource

  ELEMENT_DATA: any[] = [
    { position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H' },
    { position: 2, name: 'Helium', weight: 4.0026, symbol: 'He' },
    { position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li' },
    { position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be' },
  ];

  svc: any;
  http: any;

  response: any;



  constructor(http: HttpClient, svc: BackendcallingService) {
    this.http = http;
    this.svc = svc;

  }

  ngOnInit() {




    this.http.get('http://localhost:8080/epsdk-app-os/get_role?role_id=undefined')
      .subscribe(response => {
        this.response = response;

        this.jsondata = (JSON.parse(response.data));
        this.role = this.jsondata.role;
        this.jsonifiedrole = JSON.parse(this.role);

        this.availableRoles = this.jsondata.availableRoles;
        this.jsonifiedavailableRoles = JSON.parse(this.availableRoles);


        this.dataSource2 = new MatTableDataSource<any>(this.ELEMENT_DATA); // example data source
        this.dataSource = new MatTableDataSource<any>(this.jsonifiedavailableRoles); //my datasource

        console.log(this.jsondata);
        console.log(this.role);
        console.log(this.jsonifiedrole);
        console.log(this.availableRoles);
        console.log(this.jsonifiedavailableRoles);

      })

  }

}

jsonifiedavailableRoles看起來像這樣。 我不知道它與ELEMENT_DATA有什么不同,后者確實呈現為dataSource2

查看圖片-jsonifiedavailableRoles看起來像這樣

我的.html文件

<div>
  <table mat-table [dataSource]="dataSource2" class="mat-elevation-z8">
    <ng-container matColumnDef="position">
      <th mat-header-cell *matHeaderCellDef> No. </th>
      <td mat-cell *matCellDef="let element"> {{element.position}} </td>
    </ng-container>

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

    <ng-container matColumnDef="weight">
      <th mat-header-cell *matHeaderCellDef> Weight </th>
      <td mat-cell *matCellDef="let element"> {{element.weight}} </td>
    </ng-container>

    <ng-container matColumnDef="symbol">
      <th mat-header-cell *matHeaderCellDef> Symbol </th>
      <td mat-cell *matCellDef="let element"> {{element.symbol}} </td>
    </ng-container>

    <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
    <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
  </table>

</div>

<div>
  <br>

  <table> mat-table [dataSource]="dataSource">
<ng-container matColumnDef="name">
  <th mat-header-cell *matHeaderCellDef> Name </th>
  <td mat-cell *matCellDef="let element"> {{element.name}} </td>
</ng-container>

<ng-container matColumnDef="priority">
  <th mat-header-cell *matHeaderCellDef> Priority </th>
  <td mat-cell *matCellDef="let element"> {{element.priority}} </td>
</ng-container>

<ng-container matColumnDef="editUrl">
  <th mat-header-cell *matHeaderCellDef> Edit </th>
  <td mat-cell *matCellDef="let element"> {{element.editUrl}} </td>
</ng-container>


<ng-container matColumnDef="active">
  <th mat-header-cell *matHeaderCellDef> Active? </th>
  <td mat-cell *matCellDef="let element"> {{element.active}} </td>
</ng-container>

<ng-container matColumnDef="createdId">
  <th mat-header-cell *matHeaderCellDef> Delete </th>
  <td mat-cell *matCellDef="let element"> {{element.createdId}} </td>
</ng-container>

<tr mat-header-row *matHeaderRowDef="columnsToDisplay"></tr>
<tr mat-row *matRowDef="let row; columns: columnsToDisplay;"></tr>

columnsToDisplay應該與您的html標記匹配。

columnsToDisplay = ['name', 'priority', 'editUrl', 'active', 'createdId'];  // columns for my dataSource

<td mat-cell *matCellDef="let element"> {{element.name}} </td>

同時更改html,

<tr mat-header-row *matHeaderRowDef="columnsToDisplay"></tr>
<tr mat-row *matRowDef="let row; columns: columnsToDisplay;"></tr>

同樣在ngOnInit的get()中,傳遞this.jsonifiedavailableRoles

 this.dataSource = new MatTableDataSource<any>(this.jsonifiedavailableRoles);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM