从 HTML 文本 React 创建 PDF 文件

IT技术 reactjs reactive-programming
2021-03-30 01:23:08

我是 react-redux 的初学者。

我尝试创建一个函数,例如使用 Javascript 将 html 文本导出为 pdf 并且它适用于 html,但是当我将它应用于 react 组件时,它不起作用。

这是我的代码:

import React from 'react';

class App extends React.Component {
  constructor(props){
    super(props);
    this.pdfToHTML=this.pdfToHTML.bind(this);
  }

  pdfToHTML(){
    var pdf = new jsPDF('p', 'pt', 'letter');
    var source = $('#HTMLtoPDF')[0];
    var specialElementHandlers = {
      '#bypassme': function(element, renderer) {
        return true
      }
    };

    var margins = {
      top: 50,
      left: 60,
      width: 545
    };

    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('html2pdf.pdf');
      }
    )
  }

  render() {
    return (
      <div>
        <div classID="HTMLtoPDF">
          <center>
            <h2>HTML to PDF</h2>
           <p>Lorem ipsum dolor sit amet, consectetur adipisicing </p>
          </center>
        </div>
        <button onClick={this.pdfToHTML}>Download PDF</button>
      </div>
    );
  } 
}

export default App;

带有 HTML 的 Javascript:https : //www.youtube.com/watch?v=HVuHr-Q7HEs

2个回答

React 在 html 标签中没有“classID”属性,它作为props传递给 div,永远不会被解析。className 仅被实现,因为它是 JS 中的保留字,可能您只需要将“classID”替换为“id”属性,它就会起作用

当您需要的只是 DOM 操作时,Ps JQuery 是不好的做法。javascript 有 document.getElementById() 并且不需要依赖

pps 给你的小技巧是“pdfToHTML(){}”可以替换为 lambda 为“pdfToHTML = () => {}”,你的函数将从类实例中获得“this”,绑定将被删除,构造函数将成为无用。

更改classIDid不起作用。您收到以下错误:`错误:addImage 不支持“未知”类型的文件,请确保添加了“未知”支持的插件。
2021-06-19 01:23:08

这是我的方式

- You can use that package in pure javascript file or server 
side(Backend)
- When you use it with the ReactJS(Frontend), it doesn't work.
- So I didn't use that.
- With html2canvas and jsPDF, I could build pdf.
- First build component, then save(download) it.