如何知道用户是否在Angular 6的“ jspdf”中保存文件

时间:2018-08-13 06:50:54

标签: angular jspdf jspdf-autotable angular-material-6

我使用了实现角度的主题。我是Angular框架的初学者。我已经使用jspdf将表格另存为pdf格式。但现在我的要求是是否保存用户文件。如何知道已保存文件的状态。

从以下位置创建了演示

https://stackblitz.com/angular/xbprlqrqjyq?file=app%2Ftable-basic-example.html

html:

 <button mat-button color="accent" (click)="print()">
   <mat-icon class="mat-24" aria-label="Example icon-button with a 
heart icon">print</mat-icon>
Print

js:

import jsPDF from 'jspdf';
import 'jspdf-autotable';
print = () => {
  let doc = new jsPDF(); 
  doc.autoTable({
    head: [['Log','', 'Amount']],
    body: this.getLiveData() //returning [["log1", "$100"], ["log2",     "$200"]]
  });
  doc.save('table.pdf')
}

0 个答案:

没有答案