如何使用打印功能实现react-pdf

时间:2018-12-30 12:15:55

标签: reactjs pdf jersey state react-pdf

我想使用react-pdf来显示PDF并开发用于直接打印的打印功能(例如使用window.print());

REST服务器是使用Jersey开发的。

PDF将从服务器生成,并使用返回类型为application / pdf的Jersey返回到React客户端。 React客户端将使用react-pdf显示PDF。

我不想在“文件”中声明URL路径,因为如果React状态更改并触发了重新渲染,这将再次从服务器检索PDF。另外,我需要开发一种打印功能来打印显示的PDF(因为如果再次从服务器检索PDF,则PDF内容可能会更改)

下面显示我的代码:

服务器:

@Override
@GET
@Path("/pdf")
@Produces(MediaType.APPLICATION_PDF_VALUE)
public Response testPdf() throws Exception {

    File file = new File("C:\\Desktop\\test.pdf");
    FileInputStream fileInputStream = new FileInputStream(file);

    ResponseBuilder response = Response.ok((Object) fileInputStream);
    response.type("application/pdf");
    response.header("Content-Disposition", "filename=test.pdf");

    return response.build();
}

客户

import React, { Component } from 'react';
import { Document, Page } from 'react-pdf';
import axios from 'axios';

class MyApp extends Component {
    state = {
        numPages: null,
        pageNumber: 1,
        pdfContent: null
    }

    componentDidMount(){
        var that = this;

        axio.get("url\Pdf).then((response) => {
             that.setState({pdfContent:response.data});
        }).catch((error) => {
             console.warn(error);
        });
    }

    onDocumentLoadSuccess = ({ numPages }) => {
        this.setState({ numPages });
    }

   printHandler(){
       window.print();
   }

   render() {
      const { pageNumber, numPages } = this.state;

      return (
          <div>
             <Document
                file={this.state.pdfContent}
                onLoadSuccess={this.onDocumentLoadSuccess}
             >
                 <Page pageNumber={pageNumber} />
             </Document>
             <p>Page {pageNumber} of {numPages}</p>

             <button onClick={() => this.setState(prevState => ({ 
                     pageNumber: prevState.pageNumber + 1 }))}>Next page</button>
             <button onClick={() => this.setState(prevState => ({ 
                     pageNumber: prevState.pageNumber - 1 }))}>Prev Page</button>

              <button onClick={this.printHandler}/>
          </div>
      );

} }

我只想获取一次PDF,然后使用react-pdf显示PDF。另外,我要打印显示的PDF。

由于未成功,我尝试将response.data转换为base64,因为未成功:(这将丢失pdf内容) Encode PDF to base64 in ReactJS

代码如下:

  componentDidMount(){
        var that = this;

        axio.get("url\Pdf).then((response) => {
             let reader = new FileReader();
            var file = new Blob([response.data], { type: 'application/pdf' });

            reader.onloadend = () => {
                that.setState({
                    base64Pdf:reader.result
                });
            }
            reader.readAsDataURL(file);
        }).catch((error) => {
             console.warn(error);
        });
    }

有人可以给我一些建议吗? 还是实现我的目标的更好方法?

谢谢

3 个答案:

答案 0 :(得分:1)

最近我在pdf部分得到了一个类似的用例,我的请求是Post,但是您可以毫无问题地将其设为Get。所以,发生了什么:

1)-我正在使用 axios 向后端发出请求:

2)-请求是我要发送的对象,但您将没有,因为您可能仅发送id,例如:axios.get('here.is.your / endpoint / id');

3)-我正在使用:保存文件以保存收到的文件。

其余的代码应该是不言自明的,我还添加了一些注释。

import {saveAs} from "file-saver";
...

axios.post('here.is.your/endpoint', qs.parse(request), {
       headers: {
          'Content-Type': 'application/json'
       },   
       responseType: 'blob' // here I am forcing to receive data in a Blob Format
    })
    .then(response => {
        if (response.data) {
            //Create a Blob from the PDF Stream
            const file = new Blob(
                [response.data],
                {type: 'application/pdf'});
            const name = 'Report.pdf';
            saveAs(file, name);
        } else {
            throw new Error("Error in data type received.");
        }
    })
    .catch(error => {
        this.setState({
            modalMessage: "Here Add Custom Message"
        });
   });

我仍然无法从后端获取错误消息,如果在它上面取得了一些进展,我会发回短信-现在,我会显示一条自定义消息。

希望对您有帮助!

祝你好运!

答案 1 :(得分:1)

从后端收到错误消息的更新

当请求失败时,我们会从后端收到一个包含错误消息的JSON对象。问题是,当我们强制接收Blob格式的响应时:responseType:'blob'-不管请求是否失败,我们都会收到一个Blob对象。因此,我正在考虑在axios提供的功能中更改responseType:transformResponse,但是不幸的是,我们无法访问“ responseType”对象,只能访问标头。这里:https://github.com/axios/axios/pull/1155存在一个尚待解决的问题,即如何将其相应地转换为responseType,但仍未解决。

因此,我解决此问题的方法是使用访存而不是axios。 这是一个示例:

fetch('here.is.your/endpoint', {
            method: 'POST', // specifying the method request
            body: JSON.stringify(request), // specifying the body
            headers: {
                "Content-Type": "application/json"
            }
        }
    ).then((response) => {
        if (response.ok) { // checks if the response is with status 200 (successful)
            return response.blob().then(blob => {
                const name = 'Report.pdf';
                saveAs(blob, name);
            });
        } else {
            return response.json().then((jsonError) => {
                this.setState({
                    modalMessage: jsonError.message // access the error message returned from the back-end
                });
            });
        }
    }).catch(function (error) {
        this.setState({
            modalMessage: "Error in data type received." // general handler
        });
    });

我希望这会有所帮助!

答案 2 :(得分:0)

很高兴我帮助了!

我还有一个更新以接收错误消息

只有在您收到文本消息而不是JSON时,此消息才有效

fetch('here.is.your/endpoint', {
        method: 'POST', // specifying the method request
        body: JSON.stringify(request), // specifying the body
        headers: {
            "Content-Type": "application/json"
        }
    }
).then((response) => {
    if (response.ok) { // checks if the response is with status 200 (successful)
        return response.blob().then(blob => {
            const name = 'Report.pdf';
            saveAs(blob, name);
        });
    } else {
         return response.text().then(function (error) {
                    throw new Error(error); // we should throw an Error with the received error
                }
            );
    }
}).catch(function (error) {
    this.setState({
        modalMessage: error.message // that way we access the error message
    });
});

我们使用response.text()。then()是因为我们设法将其从Promise转换为文本。使用.then()非常重要,因为此时Promise已解决,并且我们收到Promise值。然后,我们只是抛出一个错误,因为我们无法访问状态对象。

这就是您从回复中获取文本的方式。