vue2 将页面天生pdf下载

打印 上一主题 下一主题

主题 821|帖子 821|积分 2463

项目场景:

在项目开发的过程中,常常有下载一些报表,有部分要求文档是pdf格式的文件,这时间可以插件快速地搭建一个将页面天生pdf文件的功能。

依赖支持


本次项目中主要使用的nodejs: 14.20.0,npm版本是6.14.17。
  1. npm install --save jspdf
  2. npm install --save html2canvas;
  3. npm install vue-router@3
复制代码


实施步调:

1、创建vue2项目
2、设置路由 router
3、搭建下载功能
        创建utils文件夹,文件夹内创建htmlToPdf.js文件,并将其加载在main.js
  1. import htmlToPdf from '@/utils/htmlToPdf'
  2. Vue.use(htmlToPdf)
复制代码
  1. import html2Canvas from 'html2canvas'
  2. import JsPDF from 'jspdf'
  3. export default {
  4.    
  5.   install(Vue) {
  6.     /**
  7.      *
  8.      * @param {*} reportName 下载时候的标题
  9.      * @param {*} isDownload  是否下载默认为下载,传false不下载
  10.      */
  11.     Vue.prototype.getPdf = function (reportName, isDownload = true) {
  12.       //     var target = document.getElementsByClassName("right-aside")[0];
  13.       // target.style.background = "#FFFFFF";
  14.       return new Promise((resolve, reject) => {
  15.         var title = reportName;
  16.         html2Canvas(document.querySelector('#app'), {
  17.           allowTaint: true
  18.         }).then((canvas) => {
  19.           let contentWidth = canvas.width
  20.           let contentHeight = canvas.height
  21.           //一页pdf显示html页面生成的canvas高度;
  22.           let pageHeight = contentWidth / 592.28 * 841.89
  23.           //未生成pdf的html页面高度
  24.           let leftHeight = contentHeight
  25.           //页面偏移
  26.           let position = 0
  27.           //a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的宽高
  28.           let imgWidth = 595.28
  29.           let imgHeight = 592.28 / contentWidth * contentHeight
  30.           let pageData = canvas.toDataURL('image/jpeg', 1.0)
  31.           let PDF = new JsPDF('', 'pt', 'a4')
  32.           //有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
  33.           //当内容未超过pdf一页显示的范围,无需分页
  34.           if (leftHeight < pageHeight) {
  35.             PDF.addImage(pageData, 'JPEG', 0, 0, imgWidth, imgHeight)
  36.           } else {
  37.             while (leftHeight > 0) {
  38.               PDF.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
  39.               leftHeight -= pageHeight
  40.               position -= 841.89
  41.               //避免添加空白页
  42.               if (leftHeight > 0) {
  43.                 PDF.addPage()
  44.               }
  45.             }
  46.           }
  47.           if (isDownload) {
  48.             PDF.save(title + '.pdf')
  49.           }
  50.           // 删除本地存储的base64字段
  51.           var pdfData = PDF.output('datauristring')//获取base64Pdf
  52.           resolve(pdfData)
  53.         }
  54.         ).catch(error=>{
  55.             reject(error)
  56.         })
  57.       })
  58.     }
  59.   }
  60. }
复制代码
4、开发功能,此中代码如下。初步的使用,已经可以下载pdf,详细的使用,必要根据自身的需求进行调解。
  1. <template>
  2.   <div class="hello">
  3.     <h1>{{ msg }}</h1>
  4.     <p>
  5.       For a guide and recipes on how to configure / customize this project,<br>
  6.       check out the
  7.       <a @click="initData()" target="_blank" rel="noopener">vue-cli documentation</a>.
  8.     </p>
  9.     <button @click="toGetPdf()">下载PDF</button>//这种情况是只下载,不上传后端
  10.     <!-- <button @click="toGetPdf(1, 0)">下载PDF</button>//这种情况是只走上传后端接口,不下载 -->
  11.    
  12.   </div>
  13. </template>
  14. <script>
  15. import { jsPDF } from "jspdf";
  16. // Default export is a4 paper, portrait, using millimeters for units
  17. export default {
  18.   name: 'HelloWorld',
  19.   data(){
  20.     return {
  21.       actName:'1111'
  22.     }
  23.   },
  24.   methods:{
  25.     initData(){
  26.       const doc = new jsPDF();
  27.       doc.text("Hello world!", 10, 10);
  28.       doc.save("a4.pdf");
  29.     },
  30.     toGetPdf( ) {
  31.       /**
  32.      * val 决定走不走上传接口,默认为不上传给后端
  33.      * download 默认是下载
  34.      * /
  35.       /* */
  36.       this.$nextTick(() => {
  37.         setTimeout(() => {
  38.           window.scrollTo(0, 0);     //这行代码很重要,它让页面的滚动条跳到了最上方如果点击打印按钮的时候,滚动条没有在最上方,打印内容会是不完整的,体验也会差
  39.           let title ="pdf文件"
  40.           this.getPdf(title, true) //download:false为不下载,这里调用了刚刚引用的全局函数,.then得到的值是base64位的pdf文件
  41.            
  42.         }, 1000);
  43.       });
  44.     },
  45.   },
  46.   
  47. }
  48. </script>
  49. <!-- Add "scoped" attribute to limit CSS to this component only -->
  50. <style scoped>
  51. h3 {
  52.   margin: 40px 0 0;
  53. }
  54. ul {
  55.   list-style-type: none;
  56.   padding: 0;
  57. }
  58. li {
  59.   display: inline-block;
  60.   margin: 0 10px;
  61. }
  62. a {
  63.   color: #42b983;
  64. }
  65. </style>
复制代码

项目总结:

方法并不是很难,稍微相识,说不定以后得项目中,会使用到。
从项目中学习,然后本身重构,有助于自身快速的成长。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

正序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

伤心客

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表