美文网首页
vue中使用pdf.js

vue中使用pdf.js

作者: 银角大王__ | 来源:发表于2019-03-22 17:59 被阅读0次
    1. 下载依赖文件 下载地址
      WX20190322-180204.png
    2. 将下载的文件拷贝到 static 目录下 修改文件夹名称为 pdfjs 文件夹中的文件不可删除
    3. 在项目中引用
    <template>
        <div class="pdf-conatiner">
            <div class="pdfbox">
                <iframe :src=' "./static/pdfjs/web/viewer.html?file=" + pdfUrl '></iframe>
            </div>
        </div>
    </template>
    
    
    • 报错处理
      // 1.
    ....../web/cmaps/GBK-EUC-H.bcmap 404 (Not Found)
    ......locale/locale.properties 404 (Not Found)
    // 解决办法 在iis中添加
    文件类型: .properties
    MIME type: application / octet-stream
    
    文件类型: .bcmap
    MIME type: application / octet-stream
    

    相关文章

      网友评论

          本文标题:vue中使用pdf.js

          本文链接:https://www.haomeiwen.com/subject/qjwrvqtx.html