我使用了实现角度的主题。我是Angular框架的初学者。我已经使用jspdf将表格另存为pdf格式。但现在我的要求是是否保存用户文件。如何知道已保存文件的状态。
从以下位置创建了演示
https://stackblitz.com/angular/xbprlqrqjyq?file=app%2Ftable-basic-example.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
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')
}