admin管理员组

文章数量:1023204

I am trying to convert jsp code to PDF file using jsPDF. But it is giving me the TypeError: pdf.fromHTML is not a function. I have downloaded the jspdf zip from . My code is :

 <html>
<head>

<title>Exporting table data to pdf Example</title>


<script type="text/javascript" src=".1.3.js"></script>
<script src="jsPDF/jspdf.js"></script>
<script src="jsPDF/main.js"></script>



<script type="text/javascript">
    $(document).ready(function() {

        $("#exportpdf").click(function() {
            var pdf = new jsPDF('p', 'pt', 'ledger');
            // source can be HTML-formatted string, or a reference
            // to an actual DOM element from which the text will be scraped.
            source = $('#yourTableIdName')[0];

            // we support special element handlers. Register them with jQuery-style 
            // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.)
            // There is no support for any other type of selectors 
            // (class, of pound) at this time.
            specialElementHandlers = {
                // element with id of "bypass" - jQuery style selector
                '#bypassme' : function(element, renderer) {
                    // true = "handled elsewhere, bypass text extraction"
                    return true
                }
            };
            margins = {
                top : 80,
                bottom : 60,
                left : 60,
                width : 522
            };
            // all coords and widths are in jsPDF instance's declared units
            // 'inches' in this case
            pdf.fromHTML(source, // HTML string or DOM elem ref.
            margins.left, // x coord
            margins.top, { // y coord
                'width' : margins.width, // max width of content on PDF
                'elementHandlers' : specialElementHandlers
            },

            function(dispose) {
                // dispose: object with X, Y of the last line add to the PDF 
                //          this allow the insertion of new lines after html
                pdf.save('fileNameOfGeneretedPdf.pdf');
            }, margins);
        });

    });
</script>



</head>
<body>
<div id="yourTableIdName">
    <table style="width: 1020px;font-size: 12px;" border="1">
        <thead>
            <tr align="left">
                <th>Country</th>
                <th>State</th>
                <th>City</th>
            </tr>
        </thead>


        <tbody>

            <tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr>
<tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr>
        </tbody>
    </table></div>

    <input type="button" id="exportpdf" value="Download PDF">


</body>

</html>

I am trying to convert jsp code to PDF file using jsPDF. But it is giving me the TypeError: pdf.fromHTML is not a function. I have downloaded the jspdf zip from https://github./MrRio/jsPDF. My code is :

 <html>
<head>

<title>Exporting table data to pdf Example</title>


<script type="text/javascript" src="https://code.jquery./jquery-2.1.3.js"></script>
<script src="jsPDF/jspdf.js"></script>
<script src="jsPDF/main.js"></script>



<script type="text/javascript">
    $(document).ready(function() {

        $("#exportpdf").click(function() {
            var pdf = new jsPDF('p', 'pt', 'ledger');
            // source can be HTML-formatted string, or a reference
            // to an actual DOM element from which the text will be scraped.
            source = $('#yourTableIdName')[0];

            // we support special element handlers. Register them with jQuery-style 
            // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.)
            // There is no support for any other type of selectors 
            // (class, of pound) at this time.
            specialElementHandlers = {
                // element with id of "bypass" - jQuery style selector
                '#bypassme' : function(element, renderer) {
                    // true = "handled elsewhere, bypass text extraction"
                    return true
                }
            };
            margins = {
                top : 80,
                bottom : 60,
                left : 60,
                width : 522
            };
            // all coords and widths are in jsPDF instance's declared units
            // 'inches' in this case
            pdf.fromHTML(source, // HTML string or DOM elem ref.
            margins.left, // x coord
            margins.top, { // y coord
                'width' : margins.width, // max width of content on PDF
                'elementHandlers' : specialElementHandlers
            },

            function(dispose) {
                // dispose: object with X, Y of the last line add to the PDF 
                //          this allow the insertion of new lines after html
                pdf.save('fileNameOfGeneretedPdf.pdf');
            }, margins);
        });

    });
</script>



</head>
<body>
<div id="yourTableIdName">
    <table style="width: 1020px;font-size: 12px;" border="1">
        <thead>
            <tr align="left">
                <th>Country</th>
                <th>State</th>
                <th>City</th>
            </tr>
        </thead>


        <tbody>

            <tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr>
<tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr>
        </tbody>
    </table></div>

    <input type="button" id="exportpdf" value="Download PDF">


</body>

</html>
Share Improve this question asked May 26, 2016 at 15:29 PrattyPratty 851 gold badge2 silver badges13 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 2

You're loading in the wrong file.

With Javascript libraries, there are the raw source files, and then there's the piled files ready for distribution. So whenever you're looking at a library like this, and you want to find the file to include, it's mon to check in the dist/ directory. So all you need to include is either jspdf.debug.js or jspdf.min.js

The examples included in the repository are a good way to know how to include and use the library. Check out the basic example here:

https://github./MrRio/jsPDF/blob/master/examples/basic.html

Just use the following dependencies.

<script type="text/javascript" src="https://code.jquery./jquery-2.1.3.js"></script>

<script src="https://cdnjs.cloudflare./ajax/libs/jspdf/1.3.2/jspdf.debug.js"></script>

Make sure, you don't include any other jspdf.js file which will override the jspdf.debug.js file. Including multiple versions will also result in problems.

I am trying to convert jsp code to PDF file using jsPDF. But it is giving me the TypeError: pdf.fromHTML is not a function. I have downloaded the jspdf zip from . My code is :

 <html>
<head>

<title>Exporting table data to pdf Example</title>


<script type="text/javascript" src=".1.3.js"></script>
<script src="jsPDF/jspdf.js"></script>
<script src="jsPDF/main.js"></script>



<script type="text/javascript">
    $(document).ready(function() {

        $("#exportpdf").click(function() {
            var pdf = new jsPDF('p', 'pt', 'ledger');
            // source can be HTML-formatted string, or a reference
            // to an actual DOM element from which the text will be scraped.
            source = $('#yourTableIdName')[0];

            // we support special element handlers. Register them with jQuery-style 
            // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.)
            // There is no support for any other type of selectors 
            // (class, of pound) at this time.
            specialElementHandlers = {
                // element with id of "bypass" - jQuery style selector
                '#bypassme' : function(element, renderer) {
                    // true = "handled elsewhere, bypass text extraction"
                    return true
                }
            };
            margins = {
                top : 80,
                bottom : 60,
                left : 60,
                width : 522
            };
            // all coords and widths are in jsPDF instance's declared units
            // 'inches' in this case
            pdf.fromHTML(source, // HTML string or DOM elem ref.
            margins.left, // x coord
            margins.top, { // y coord
                'width' : margins.width, // max width of content on PDF
                'elementHandlers' : specialElementHandlers
            },

            function(dispose) {
                // dispose: object with X, Y of the last line add to the PDF 
                //          this allow the insertion of new lines after html
                pdf.save('fileNameOfGeneretedPdf.pdf');
            }, margins);
        });

    });
</script>



</head>
<body>
<div id="yourTableIdName">
    <table style="width: 1020px;font-size: 12px;" border="1">
        <thead>
            <tr align="left">
                <th>Country</th>
                <th>State</th>
                <th>City</th>
            </tr>
        </thead>


        <tbody>

            <tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr>
<tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr>
        </tbody>
    </table></div>

    <input type="button" id="exportpdf" value="Download PDF">


</body>

</html>

I am trying to convert jsp code to PDF file using jsPDF. But it is giving me the TypeError: pdf.fromHTML is not a function. I have downloaded the jspdf zip from https://github./MrRio/jsPDF. My code is :

 <html>
<head>

<title>Exporting table data to pdf Example</title>


<script type="text/javascript" src="https://code.jquery./jquery-2.1.3.js"></script>
<script src="jsPDF/jspdf.js"></script>
<script src="jsPDF/main.js"></script>



<script type="text/javascript">
    $(document).ready(function() {

        $("#exportpdf").click(function() {
            var pdf = new jsPDF('p', 'pt', 'ledger');
            // source can be HTML-formatted string, or a reference
            // to an actual DOM element from which the text will be scraped.
            source = $('#yourTableIdName')[0];

            // we support special element handlers. Register them with jQuery-style 
            // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.)
            // There is no support for any other type of selectors 
            // (class, of pound) at this time.
            specialElementHandlers = {
                // element with id of "bypass" - jQuery style selector
                '#bypassme' : function(element, renderer) {
                    // true = "handled elsewhere, bypass text extraction"
                    return true
                }
            };
            margins = {
                top : 80,
                bottom : 60,
                left : 60,
                width : 522
            };
            // all coords and widths are in jsPDF instance's declared units
            // 'inches' in this case
            pdf.fromHTML(source, // HTML string or DOM elem ref.
            margins.left, // x coord
            margins.top, { // y coord
                'width' : margins.width, // max width of content on PDF
                'elementHandlers' : specialElementHandlers
            },

            function(dispose) {
                // dispose: object with X, Y of the last line add to the PDF 
                //          this allow the insertion of new lines after html
                pdf.save('fileNameOfGeneretedPdf.pdf');
            }, margins);
        });

    });
</script>



</head>
<body>
<div id="yourTableIdName">
    <table style="width: 1020px;font-size: 12px;" border="1">
        <thead>
            <tr align="left">
                <th>Country</th>
                <th>State</th>
                <th>City</th>
            </tr>
        </thead>


        <tbody>

            <tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr>
<tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr><tr align="left">
                <td>India</td>
                <td>Telangana</td>
                <td>Nirmal</td>
            </tr>
        </tbody>
    </table></div>

    <input type="button" id="exportpdf" value="Download PDF">


</body>

</html>
Share Improve this question asked May 26, 2016 at 15:29 PrattyPratty 851 gold badge2 silver badges13 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 2

You're loading in the wrong file.

With Javascript libraries, there are the raw source files, and then there's the piled files ready for distribution. So whenever you're looking at a library like this, and you want to find the file to include, it's mon to check in the dist/ directory. So all you need to include is either jspdf.debug.js or jspdf.min.js

The examples included in the repository are a good way to know how to include and use the library. Check out the basic example here:

https://github./MrRio/jsPDF/blob/master/examples/basic.html

Just use the following dependencies.

<script type="text/javascript" src="https://code.jquery./jquery-2.1.3.js"></script>

<script src="https://cdnjs.cloudflare./ajax/libs/jspdf/1.3.2/jspdf.debug.js"></script>

Make sure, you don't include any other jspdf.js file which will override the jspdf.debug.js file. Including multiple versions will also result in problems.

本文标签: javascriptTypeError pdffromHTML is not a function while converting html to pdf using jspdfStack Overflow