在ionic中使用jspdf将HTML转换为PDF

zphenhs4  于 2022-12-08  发布在  Ionic
关注(0)|答案(1)|浏览(120)

我想使用jspdf将html转换为pdf,但我想生成pdf而不向用户显示html内容。我使用的技术是离子。请帮助解决这个问题

nnt7mjpx

nnt7mjpx1#

public downloadPDF() {
    const doc = new jsPDF();

    const specialElementHandlers = {
      '#editor': function (element, renderer) {
        return true;
      }
    };

    const content = this.content.nativeElement;

    doc.fromHTML(content.innerHTML, 15, 15, {
      width: 190,
      'elementHandlers': specialElementHandlers
    });

    doc.save('test.pdf');
  }

示例https://stackblitz.com/edit/angular-html-to-pdf-example

相关问题