前端页面上预览pdf
2022-08-05 本文已影响0人
家有饿犬和聋猫
1建一个容器
···
<div
ref={historyRef}
className={${styles.reportHis} overflow-auto flex-grow-1 ml-2
}
></div>
···
2 渲染数据
···
const historyRef = React.useRef();
historyRef.current.innerHTML =
'<embed width="100%" height="100%" src="' +pdf_url + '" />';
···
3 将PDf展示到页面内