vue 前端pdf下载

原文地址:https://www.cnblogs.com/N1ckeyQu/p/11382195.html

 

 一、依赖安装:
    
npm install html2canvas --save

npm install jspdf --save

    二、定义全局函数..创建一个htmlToPdf.js文件在指定位置,比如你可以放在('@/utils/htmlToPdf'),文件内容如下:

// 导出页面为PDF格式
import html2Canvas from 'html2canvas'
import JsPDF from 'jspdf'
export default {
  install(Vue, options) {
    Vue.prototype.getPdf = function(title) {
      var element = document.querySelector('#pdfDom'); // 这个dom元素是要导出pdf的div容器
      setTimeout(() => {
        html2Canvas(element).then(function(canvas) {
          var contentWidth = canvas.width;
          var contentHeight = canvas.height;

          //一页pdf显示html页面生成的canvas高度;
          var pageHeight = contentWidth / 592.28 * 841.89;
          //未生成pdf的html页面高度
          var leftHeight = contentHeight;
          //页面偏移
          var position = 0;
          //a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的宽高
          var imgWidth = 595.28;
          var imgHeight = 592.28 / contentWidth * contentHeight;

          var pageData = canvas.toDataURL('image/jpeg', 1.0);

          var pdf = new JsPDF('', 'pt', 'a4');

          //有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
          //当内容未超过pdf一页显示的范围,无需分页
          if (leftHeight < pageHeight) {
            pdf.addImage(pageData, 'JPEG', 0, 0, imgWidth, imgHeight);
          } else {
            while (leftHeight > 0) {
              pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
              leftHeight -= pageHeight;
              position -= 841.89;
              //避免添加空白页
              if (leftHeight > 0) {
                pdf.addPage();
              }
            }
          }
          pdf.save(title + '.pdf');
        });
      }, 0);
    }
  }
}

    三、在main.js文件中引用定义的全局函数

import htmlToPdf from '@/utils/htmlToPdf'
Vue.use(htmlToPdf)

    四、在组件中使用即可

<template>
  <div>
    <div id="pdfDom">
      需要生成pdf的内容,需要边距的话,给pdfDom盒子加padding内边距,margin外边距无效
    </div>


    <el-button type="primary" @click="toGetPdf">导出PDF</el-button>
  </div>
</template>


<script>
  export default {
    data() {
      return { 
      }
    },
    methods: { 

    toGetPdf() {
      /* 它让页面的滚动条跳到了最上方
      如果点击打印按钮的时候,滚动条没有在最上方,打印内容会是不完整的
       */
      window.scrollTo(0, 0);
      this.getPdf('生成的文件名');
    }

    }
  }
</script>
posted @ 2022-07-20 12:00  莫慌~~  阅读(426)  评论(0)    收藏  举报