尝试使用PdfReact组件显示PDF文件。加载PDF时,我不断收到此错误:

Warning: Ignoring invalid character "114" in hex strinpdf.worker.js:342
Warning: Ignoring invalid character "34" in hex stringpdf.worker.js:342
Warning: Ignoring invalid character "111" in hexstringpdf.worker.js:342


我的设置如下所示:

import React from 'react';
import ReactPDF from 'react-pdf/build/entry.webpack';

const About = () => {
   return (
    <div>
        <ReactPDF file="../pdf/Resume.pdf" />
    </div>
  )
}

export default About;

最佳答案

找到了解决方案:

我没有将pdf文件作为对象传递。这是PDF呈现所需的全部工作。

10-04 15:32