简体   繁体   English

如何将 angular 物料表与后端数据动态绑定?

[英]How to dynamically bind angular material table with data from backend?

I am trying to bind mat-table with data from backend api based on this Angular Material Table Dynamic Columns without model .我正在尝试基于此Angular Material Table Dynamic Columns without model将 mat-table 与来自后端 api 的数据绑定。 Here is the .ts file content这是.ts文件内容


    technologyList = [];
      listTechnology = function () {
        this.http.get("https://localhost:44370/api/admin").subscribe(
          (result: any[]) => {
            this.technologyList = result;
            //creating table begins here
            var displayedColumns = Object.keys(this.technologyList[0]);
            var displayedRows = Object.entries(this.technologyList[0]);
            this.dataSource = new MatTableDataSource(this.technologyList);
            }

I am getting response from backend as technologyList which is >我从后端收到了technologyList的响应,即 >


    Array(2)
    0: {id: 1, technologyName: "Python", description: "Python123", commission: "20", imageURL: "https://cutt.ly/gePgUvn", …}
    1: {id: 2, technologyName: "Ruby", description: "Python123", commission: "30", imageURL: "https://cutt.ly/gePgUvn", …}
    length: 2

I am trying to bind this with html using .html file as >我正在尝试使用.html文件将其与 html 绑定为 >


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

            <ng-container *ngFor="let disCol of displayedColumns; let colIndex = index" matColumnDef="{{disCol}}">
                <mat-header-cell *matHeaderCellDef>{{disCol}}</mat-header-cell>
                <mat-cell *matCellDef="let element "> {{element[disCol]}}
                </mat-cell>
            </ng-container>

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

The output is a blank white block. output 是一个空白的白色块。 What am I doing wrong here?我在这里做错了什么? Any help would be much appreciated, thank you.任何帮助将不胜感激,谢谢。

Response after the proposed change output table建议更改output 表后的响应

Try like this:试试这样:

Working Demo 工作演示

  displayedColumns = [];
  dataSource;


 listTechnology = function () {
        this.http.get("https://localhost:44370/api/admin").subscribe(
          (result: any[]) => {
            this.technologyList = result;
            this.displayedColumns = Object.keys(this.technologyList[0]);
            this.dataSource = new MatTableDataSource(this.technologyList);
        })
  }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM