预览PDF【react-pdf】插件的使用(一)

1.安装并引入react-pdf

npm i react-pdf --save

import { Document, Page, pdfjs } from 'react-pdf';
pdfjs.GlobalWorkerOptions.workerSrc = 'pdf.worker.min.js';   //1.解决报错
Uncaught SyntaxError: Unexpected token <
index.js:1452 
Error: Setting up fake worker failed: "Cannot read property 'WorkerMessageHandler' of undefined". at pdf.js:10999
2.简易版---点击翻页预览
    <div className={styles.pdfModal}>
            <div className={styles.pdf_container} 
                onContextMenu={preventDefault}
            >
                <Document
                    file={file}      
                    className={styles.pdf_document}
                    loading={documentLoading}     //自定义加载内容
                    onLoadSuccess={documentOnLoadSuccess}   //加载完成
                    noData={noData}   //空内容显示

                >
             
<Page
                
className={styles.pdf_page}         pageNumber={pdfIndex}   height={ 800 } //固定高度
             
/>
          </Document> </div> <div className={styles.btnContainer}> <Pagination
            defaultCurrent={1}
            total={numpages}
            onChange={changePage}
          />
</div>
    </div>
 
  //页面加载完回调
    const documentOnLoadSuccess = (pdf: any) => {
        console.log('加载完', pdf)
        let numPages = pdf.numPages;
        setNumPages(numPages)
    }

  //自定义加载loading const documentLoading
= () => { return <div>Please wait!</div>; }
  //请求获取pdf的地址 useEffect(()
=> { api.getpreview(params).then((res) => { if (res && res.byteLength) { setFile(res); } else { setNoData(<div>no pdf</div>) } }); }, []) //阻止右键默认事件(禁止下载) const preventDefault = (e: any) => { e.preventDefault() } //点击翻页 const [pdfIndex, setPdfIndex] = useState(1) const changPage = (page)=>{
    
setPdfIndex(page)
  }
//获取pdf地址接口
//返回数据类型
  responseType: 'arraybuffer'
  responseType: 'blob'
 
  blob转换成base64:
    let reader = new FileReader()
    reader.readAsDataUrl(blob)
    reader.onload = (e)=>{
      resolve(e.target.result)
    }
 
 //数据拦截
 
  interceptor(res: any) {
      console.log('res', res);
      if (res?.headers['content-type']?.includes('pdf')) {
        return Promise.resolve(res.data);
      }
   }
原文地址:https://www.cnblogs.com/miaomiaolong2/p/15508345.html