如何使pdf.js库在Internet Explorer中工作

问题描述 投票:0回答:1

我已经使用pdf.jspdf.worker.js来显示弹出模式。它在除IE之外的所有浏览器中都能正常工作。我对这个问题有不同的答案,但没有一个对我有用。我已经尝试过compatible.js来使pdf.js工作,但是它没有帮助。你们中的任何人对此有任何想法吗?请我真的需要帮助。

我用来在弹出模式中显示pdf文档的代码如下:

 // shows te pdf in pop up

        function showPDF(pdf_url) {
            $("#pdf-loader").show();

            PDFJS.getDocument({ url: pdf_url }).then(function (pdf_doc) {

                __PDF_DOC = pdf_doc;
                __TOTAL_PAGES = __PDF_DOC.numPages;

                // Hide the pdf loader and show pdf container in HTML
                $("#pdf-loader").hide();
                $("#pdf-contents").show();
                $("#pdf-total-pages").text(__TOTAL_PAGES);

                // Show the first page
                __PDF_DOC.getPage(1).then(handlePages);
            }).catch(function (error) {
                // If error re-show the upload button
                $("#pdf-loader").hide();
                $("#upload-button").show();
            });
        }

        // takes the pages of pdf
        function handlePages(page) {
            //This gives us the page's dimensions at full scale
            var viewport = page.getViewport(1);

            //We'll create a canvas for each page to draw it on
            var canvas = document.createElement("canvas");
            //canvas.style.display = "block";

            canvas.setAttribute("id", "pdf" + __CURRENT_PAGE);

            canvas.style.cssText = "border-bottom:1px solid #000000; cursor:crosshair; text-align:center; ";

            var context = canvas.getContext('2d');
            canvas.height = viewport.height;
            canvas.width = viewport.width;
            var a = canvas.width + 70;
            document.getElementById("con").style.width = (a + "px");
            if (a > 690) {
                console.log(a);
                $("#header").css({ marginLeft: "0px" });
                $("#header1").css({ marginLeft: "0px" });
            }
            else {
                $("#header").css({ marginLeft: "0px" });
                $("#header1").css({ marginLeft: "0px" });
            }
            //Draw it on the canvas
            page.render({ canvasContext: context, viewport: viewport });
            //Add it to the web page
            document.getElementById("div").appendChild(canvas);
            //document.body.appendChild(canvas);

            //Move to next page
            __CURRENT_PAGE++;
            if (__CURRENT_PAGE <= __TOTAL_PAGES) {
                __PDF_DOC.getPage(__CURRENT_PAGE).then(handlePages);
            }
        }
javascript pdf canvas modal-dialog internet-explorer-11
1个回答
0
投票

也许您正在使用最新版本的pdf.js和pdf.worker.js版本。由于IE浏览器不支持ES6格式,因此在使用最新版本的Pdf.js时,可能会有某些功能不支持IE 11浏览器。

[您可以尝试使用pdf.js的ES5版本和pdf.worker.js版本(此处是有关使用pdf.js的sample,它在使用IE11的情况下效果很好,可以进行检查):] >

  • pdf.js ES5版本:https://mozilla.github.io/pdf.js/es5/build/pdf.js
  • pdf.worker.js ES5版本:https://mozilla.github.io/pdf.js/es5/build/pdf.worker.js
© www.soinside.com 2019 - 2024. All rights reserved.