【问题标题】:How to export data table to pdf using angular material如何使用角度材料将数据表导出为pdf
【发布时间】:2020-04-14 08:53:39
【问题描述】:

我需要使用角度材料将我的数据表导出到 Pdf 文件,但我不知道该怎么做,请各位大神指导!

我尝试使用 jsPDF,发现它适用于静态数据,我想从我的 Datatable 中获取副本,这应该是一种方法。

我的 HTML 数据表代码源:

 <div class="content-card">
            <mat-table [dataSource]="listdata" matSort class="products-table" [@animateStagger]="{value:'50'}"
                fusePerfectScrollbar>

                <!-- ID Column -->
                <ng-container matColumnDef="icon">
                    <mat-header-cell *matHeaderCellDef mat-sort-header>Icon</mat-header-cell>
                    <mat-cell *matCellDef="let element">
                        <img src="{{element.UrlIconName}}"/>
                    </mat-cell>
                </ng-container>

                <!-- Category Column -->
                <ng-container matColumnDef="Matricule">
                    <mat-header-cell *matHeaderCellDef fxHide mat-sor   t-header fxShow.gt-md>Matricule</mat-header-cell>
                    <mat-cell *matCellDef="let element" fxHide fxShow.gt-md>
                        <p class="category text-truncate">
                            {{element.FullName}}
                        </p>
                    </mat-cell>
                </ng-container>

                <!-- Price Column -->
                <ng-container matColumnDef="Matricule2">
                    <mat-header-cell *matHeaderCellDef mat-sort-header fxHide fxShow.gt-xs>Matricule2</mat-header-cell>
                    <mat-cell *matCellDef="let element" fxHide fxShow.gt-xs>
                        <p class="price text-truncate">
                            {{element.FullName2}}
                        </p>
                    </mat-cell>
                </ng-container>

                <!-- Quantity Column -->
                <ng-container matColumnDef="Departemant">
                    <mat-header-cell *matHeaderCellDef mat-sort-header fxHide fxShow.gt-sm>Departemant</mat-header-cell>
                    <mat-cell *matCellDef="let element" fxHide fxShow.gt-sm>
                        <span>
                            {{element.DepartmentName}}
                        </span>
                    </mat-cell>
                </ng-container>
                <!-- Quantity Column -->
                <ng-container matColumnDef="Etat">
                    <mat-header-cell *matHeaderCellDef mat-sort-header fxHide fxShow.gt-sm>Etat d'inst
                    </mat-header-cell>
                    <mat-cell *matCellDef="let element" fxHide fxShow.gt-sm>

                        <p *ngIf="element.CurrentEquipmentElement; else notShow">
                            <mat-icon class="active-icon green-600 s-16">check</mat-icon>   
                        </p>
                        <ng-template #notShow>
                            <mat-icon class="active-icon red-500 s-16">close</mat-icon>
                        </ng-template>
                    </mat-cell>
                </ng-container>

               <ng-container matColumnDef="Chauffeur">
                    <mat-header-cell *matHeaderCellDef mat-sort-header fxHide fxShow.gt-sm>Chauffeur</mat-header-cell>
                    <mat-cell *matCellDef="let element" fxHide fxShow.gt-sm>
                        <span>
                            {{element.DriverName}}
                        </span>
                    </mat-cell>
                </ng-container>
  ...

                <mat-header-row *matHeaderRowDef="displayedColumns; sticky:true"></mat-header-row>
                <mat-row *matRowDef="let row; columns: displayedColumns;" class="product" matRipple></mat-row>


            </mat-table>
            <mat-toolbar color="white" >
                <mat-toolbar-row >
                    <mat-icon  title="Export as pdf" fxFlex="10">picture_as_pdf</mat-icon>
                    <mat-paginator #paginator [pageSizeOptions]="[5, 10, 25, 100]" [pageSize]="5" fxFlex="90"></mat-paginator>
                </mat-toolbar-row>
            </mat-toolbar>
        </div>
        <!-- / CONTENT CARD -->
    </div>

我的组件.ts

 this.service.get_cars().subscribe((data)=>{
      //console.log(data);
      this.UIGestionlist = json2array(data);
 this.Listtrackigobjct = this.UIGestionlist[3];
      this.Listtrackigobjct.forEach(e=>{
this.listdata = new MatTableDataSource(this.Listtrackigobjct);
      this.listdata.sort = this.sort;
      this.listdata.paginator = this.paginator;
    });

我尝试过像这样使用 jspdf:

downloadPdf() {
    this.Listtrackigobjct.forEach(e=>{
      const tempObj = {} as ExportArray;
      tempObj.FullName = e.FullName;
      tempObj.DepartmentName = e.DepartmentName;
      tempObj.DriverName = e.DriverName;
      tempObj.CurrentCarType = e.CurrentCarType;
      tempObj.CurrentCarModelString = e.CurrentCarModelString;
      tempObj.CurrentModelYear = e.CurrentModelYear;
      tempObj.CurrentFuelTypeEnum = e.CurrentFuelTypeEnum;
      tempObj.FuelContainerCapacity = e.FuelContainerCapacity;
      tempObj.MileageFloat = e.MileageFloat;
      prepare.push(tempObj);

    });
    console.log(prepare);
    const doc = new jsPDF();
    doc.autoTable({
        head: [['Matricule','Departemant','Chauffeur','Marque','Modele','Année','Type','Capacite','kilometrage']],
        body: prepare
    });
    doc.save('Vehicules_List' + '.pdf');
  }
}

但这里的 pdf 只显示标题作为这里的图片

正文内容类似于:[{...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {... }、{…}、{…}、{…}、{…}、{…}、{…}]

例如第一个对象: FullName: "Mat1" {部门名称:“Dep1” 司机姓名:“Ch1 Ali” 当前汽车类型:“未知” CurrentCarModelString:“Autre Model” 当前型号年份:2019 CurrentFuelTypeEnum:“本质” FuelContainer容量:50 MileageFloat: 713}

【问题讨论】:

  • 如果您查看我的示例数据,您将不会以 [{}] 形式发送数据,我回答数组中的数组并且所有数组都不是对象数组,它们是字符串数组,您将其转换为该样式
  • 你能分享一个有效的对象吗
  • mmmm 我明白了,如何将该 obj 转换为数组?
  • 最糟糕的方法是 for 循环并将它们放入数组中,最好的方法是映射。如果你共享一个有效的对象,我可以编写它的代码
  • [{FullName:“Mat1”,DepartmentName:“Dep1”,DriverName:“Ch1 Ali”,CurrentCarType:“未知”,CurrentCarModelString:“Autre Modèle”,CurrentModelYear:2019,CurrentFuelTypeEnum:“Essence ",FuelContainerCapacity:50,MileageFloat:713},{FullName:"123",epartmentName:"Dep1",DriverName:"--",CurrentCarType:"Aston_martin",CurrentCarModelString:"Vantage",CurrentModelYear:1900,CurrentFuelTypeEnum:"精华”,FuelContainerCapacity: 2,MileageFloat: 0}]

标签: angular typescript jspdf


【解决方案1】:

你可以一起使用javascript typescript。 jspdf 库可以解决您的问题。将 js pdf 导入到你的项目中

import jsPDF from 'jspdf';
import 'jspdf-autotable';


downloadPdf() {
    var prepare=[];
    this.Listtrackigobjct.forEach(e=>{
      var tempObj =[];
      tempObj.push(e.FullName);
      tempObj.push(e.DepartmentName);
      tempObj.push( e.CurrentCarType);
      tempObj.push( e.CurrentCarModelString);
      tempObj.push( e.CurrentModelYear);
      tempObj.push(e.CurrentFuelTypeEnum);
      tempObj.push(e.FuelContainerCapacity);
      tempObj.push(e.MileageFloat);
      prepare.push(tempObj);
    });
    const doc = new jsPDF();
    doc.autoTable({
        head: [['Matricule','','Departemant','','Chauffeur','','Marque','','Modele','','Année','','Type','','Capacite','','kilometrage']],
        body: prepare
    });
    doc.save('Vehicules_List' + '.pdf');
  }
}

或者你可以使用我在 stackblitz 中编辑的另一种方式。使用打印功能写成pdf https://stackblitz.com/edit/angular-material-table-export-excel-file-jescpr

 let printContents, popupWin;
    printContents = document.getElementById(tableId).innerHTML;
    console.log(printContents)
    popupWin = window.open('', '_blank', 'top=0,left=0,height=auto,width=auto');
    popupWin.document.open();
    popupWin.document.write(`
  <html>
    <head>
      <title>Print tab</title>

    </head>
<body onload="window.print();window.close()"><table class="table table-bordered">${printContents}</table></body>
  </html>`
    );
    popupWin.document.close();

【讨论】:

  • 好的,但是正文不应该是完整的数据吗?我的意思是,如果你在你的响应中有 Log 、 Amount 和 age 并且你必须只显示 Log 和 Amount 怎么做?
  • 我不明白你的意思?在头中,您将把它与您的标题放在一起,在正文中,您将用您将其发送到 html 以显示的数据填充它。这段代码中的 head 就是一个例子。你可以制作打印函数,它接受标题和数据的参数。
  • 请检查我的更新。我做了你的提议,但没有用
  • 你给打印功能一个输入。怎么可能是静态数据?在body里面会有一个函数输入
【解决方案2】:

使用 TypeScript jsPdf autotable

import jsPDF from 'jspdf';
import autoTable from 'jspdf-autotable'

  downloadPdf() {
    const doc = new jsPDF();
    autoTable(doc, { html: '#my_table_id' })
    doc.save('my_table.pdf')
  }

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2020-07-24
    • 1970-01-01
    • 1970-01-01
    • 2020-03-14
    • 1970-01-01
    • 2019-12-27
    • 1970-01-01
    相关资源
    最近更新 更多