移动端预览pdf处理

若需要在移动端浏览器,微信内置浏览器等预览pdf文件,ios是可以直接打开文件链接,安卓总是提示让你安装QQ浏览器。
react项目中 可以安装react-pdf来处理预览pdf的问题

npm install react-pdf --save
import { Document, Page } from 'react-pdf';
export default class Example extends Component {
    onDocumentLoadSuccess = ({ numPages }) => {
        // 获取文件总页数
        this.setState({
            totalPages: numPages,
        });
    };
    render() {
        const { match, location, history } = this.props;
        return 
; }

你可能感兴趣的:(移动端预览pdf处理)