How to use pdf.js to preview pdf files in Vue

How to use pdf.js to preview pdf files in Vue

When we preview PDF on the page, some files cannot be printed or downloaded. At this time, it is difficult to meet customer needs by using the PDF that comes with Window. Therefore, we need another way to support PDF file preview under special conditions. Here I use the form of introducing pdf.js file to achieve the purpose.

Step 1: Download pdf.js

Import pdf.js file

The address is as follows: http://mozilla.github.io/pdf.js/getting_started/

The second step is to introduce Vue

I put the downloaded files in the root directory of piblic

Step 3: Use

The main address is "/build/generic/web/viewer.html?file="+href, where href is the file path returned by the request backend or the file path generated after the front-end parsing of the file stream returned by the backend. /build/generic/web/viewer.html?file= is added to the front. The address is the path of the pdf.js file you introduced. You can also write /build/generic/web/viewer.html directly, and it will go directly to find it. Below I use the front-end parsing file stream to generate the address preview.

Preview method window.open("/build/generic/web/viewer.html?file="+href);

axios({
                method: 'get',
                url:url,
                headers: {
                    "token":auth,
                },
                responseType: 'blob',
            }).then(response => {
                type_ = type_.toLowerCase();
                if (type_ == "docx") {
                    that._type_ = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
                } else if (type_ == "doc") {
                    that._type_ = "application/msword"
                } else if (type_ == "gif") {
                    that._type_ = "image/gif"
                } else if (type_ == "jpeg" || type_ == "jpg") {
                    that._type_ = "image/jpeg"
                } else if (type_ == "png") {
                    that._type_ = "image/png"
                } else if (type_ == "pdf") {
                    that._type_ = "application/pdf"
                } else if (type_ == "txt") {
                    that._type_ = "text/plain;charset=utf-8'"
                } else if (type_ == "xls") {
                    that._type_ = "application/vnd.ms-excel" 
                } else if (type_ == "xlsx") {
                    that._type_ = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
                }else if (type_ == "zip") {
                    that._type_ = "application/zip"
                } else if (type_ == "ppt") {
                    that._type_ = "application/vnd.ms-powerpoint"
                } else if (type_ == "pptx") {
                    that._type_ = "application/vnd.openxmlformats-officedocument.presentationml.presentation"
                }
               if(type_ == "pdf"){
                    var blob = new Blob([response.data], { type: that._type_ })
                    var href = window.URL.createObjectURL(blob); //Create download link window.open("/build/generic/web/viewer.html?file="+href);
                }
            })

at last

If you want to disable the downloading, printing and other functions of PDF files, the easiest way is to find the viewer.html in the imported file. The path is viewer.html in the web folder under the generic folder under build, as follows:

Find the corresponding downloaded DOM in this HTML and just set display:none. Remember not to comment it out, or an error will be reported. As shown below, in the red box, one is for downloading and the other is for printing, just hide them.

If someone asks whether this is also unsafe, you can discuss with the client not to display it on the page, because anything that can be seen on the page can also be captured by screenshots, which is bound to be unsafe.

This is the end of this article about vue using pdf.js to preview pdf. For more information about vue using pdf.js to preview pdf content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to generate high-definition PDF files from HTML pages in Vue
  • How to preview pdf file using pdfjs in vue
  • Vue implements online preview of PDF files (using pdf.js/iframe/embed)
  • Examples of mobile phone number and email regular verification in Vue and sending verification code in 60s
  • Vue implements the sample code of sending PDF files to mailbox

<<:  Advanced techniques for using CSS (used in actual combat)

>>:  The whole process of installing gogs with pagoda panel and docker

Recommend

vue-router hook function implements routing guard

Table of contents Overview Global hook function R...

How to reset the root password of Mysql in Windows if you forget it

My machine environment: Windows 2008 R2 MySQL 5.6...

A brief discussion on when MySQL uses internal temporary tables

union execution For ease of analysis, use the fol...

The implementation process of extracting oracle data to mysql database

In the migration of Oracle database to MySQL data...

Nginx reverse proxy forwards port 80 requests to 8080

Let's first understand a wave of concepts, wh...

MySql knowledge points: transaction, index, lock principle and usage analysis

This article uses examples to explain the princip...

Solution to the problem of saving format in HTML TextArea

The format of textarea can be saved to the databas...

Solution to the problem of failure to insert emoji expressions into MySQL

Preface I always thought that UTF-8 was a univers...

How to install MySQL database on Debian 9 system

Preface Seeing the title, everyone should be thin...

Vue.js performance optimization N tips (worth collecting)

Table of contents Functionalcomponents Childcompo...

JavaScript realizes the queue structure process

Table of contents 1. Understanding Queues 2. Enca...

my.cnf (my.ini) important parameter optimization configuration instructions

MyISAM storage engine The MyISAM storage engine i...

JavaScript selector functions querySelector and querySelectorAll

Table of contents 1. querySelector queries a sing...

View the frequently used SQL statements in MySQL (detailed explanation)

#mysql -uroot -p Enter password mysql> show fu...