Download a webpage in pdf format using angular4

99封情书 提交于 2019-12-10 18:37:07

问题


I am new for angular 4. I need to download a HTML webpage in pdf format and the html webpage contains angular controls like input [(ngModel)], radio button [checked]. Rather than showing the control values it shows undefined in the pdf file.

I tried using jsPdf & html2Pdf But it throws error

Error:

You need either https://github.com/niklasvh/html2canvas or https://github.com/cburgmer/rasterizeHTML.js
    at Object.jsPDFAPI.addHTML (jspdf.debug.js?6964:4049)

Code for TS File:

import { Component, ViewChild, Compiler, ComponentRef, OnInit, EventEmitter, ElementRef } from "@angular/core";
    import { Router } from '@angular/router';
    import { FormGroup, FormBuilder, FormControl, Validators } from '@angular/forms';
    import * as jsPDF from 'jspdf';
    import * as html2canvas from 'html2canvas';


    @Component({
        templateUrl: "./dashboard.html"
    })

    export class DashboardComponent implements OnInit {
     ngOnInit() {

        }


        pdf() {
            let pdf = new jsPDF();
            let options = {
                pagesplit: true
            };
            pdf.addHTML(document.getElementById("htmlform"), 0, 0, options, () => {
                pdf.save("test.pdf");
            });
        }
    }

Code for HTML

<div>
<button type="button" (click)="pdf()"></button>
</div>
<ng-component>
<html id="htmlform">
<head>
DashBoard
</head>
<body>
<h3>
Person Details
</h3>
<table>
  <tbody>
 <tr class="BorderTopSec">
                <td colspan="2">
                    <div class="label">
                        &nbsp;NAME:
                    </div>
                    <input name="person_name" type="text" [(ngModel)]="model.Name" [ngModelOptions]="{standalone:true}" />
                </td>
                </tr>
                <tr>
                 <td rowspan="4" style="border-width: 1px 1px 1px 0px; border-style: solid solid solid none; border-color: black black black white; width: 164px;">
                    <img height="150" id="imgPhoto" src="" width="155" />
                </td>
                </tr>
                <tr>
                 <td>
                    <div class="label">
                        &nbsp;LOCATION:
                    </div>
                    <select name="LOCATION" style="border: currentColor; width: 95px; font-size: 13px;" [(ngModel)]="model.location">
                        <option *ngFor="let item of model.location" [ngValue]="locationId">{{item.location}}</option>
                    </select>
                </td>
                </tr>
                <tr>
                 <td>
                    <div class="label">
                        &nbsp;SEX:
                    </div>
                    </td>
                    <td>
                <md-radio-group>
  <md-radio-button value="1"   [ngModelOptions]="{standalone:true}" >Option 1</md-radio-button>
  <md-radio-button value="2" [ngModelOptions]="{standalone:true}" >Option 2</md-radio-button>
</md-radio-group>
                </td>

</tr>
</tbody>

</table>

</body>
</html>
</ng-component>

回答1:


You need to globally import the /html2canvas/dist/html2canvas.min.js script, you can do it like stated here and documented here within the angular-cli.json files in the scripts: [] section.

Then only import * as jsPDF from 'jspdf'; and your error will disappear.

Please note that if you're using ng serve you'll have to restart your app to correctly load the script.



来源:https://stackoverflow.com/questions/45713398/download-a-webpage-in-pdf-format-using-angular4

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!