Uncaught (in promise) TypeError: Cannot read property 'ownerDocument' of null 报错详解

Uncaught (in promise) TypeError: Cannot read property ‘ownerDocument’ of null 报错详解

  • 问题重述:在使用开发的时候使用vue页面转pdf的时候出现的。
    Uncaught (in promise) TypeError: Cannot read property 'ownerDocument' of null 报错详解_第1张图片
  • 首先在/src文件夹下创建一个htmlToPdf.js文件
// 导出页面为PDF格式
import html2Canvas from 'html2canvas'
import JsPDF from 'jspdf'
export default {
  install(Vue) {
    Vue.prototype.getPdf = function () {//绑定全局方法
      html2Canvas(document.querySelector('#pdfDom'), {//指定的需要转pdf的接结点位置
        allowTaint: true
      }).then(function (canvas) { //绘制canvas
        let contentWidth = canvas.width
        let contentHeight = canvas.height
        let pageHeight = contentWidth / 592.28 * 841.89
        let leftHeight = contentHeight
        let position = 0
        let imgWidth = 595.28
        let imgHeight = 592.28 / contentWidth * contentHeight
        let pageData = canvas.toDataURL('image/jpeg', 1.0)
        let PDF = new JsPDF('', 'pt', 'a4')
        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')//导出pdf名字
      })
    }
  }
  • main.js中导入模块
import htmlToPdf from './htmlToPdf' //相对路径
Vue.use(htmlToPdf)
  • 在需要导出的页面配置相关量

  • 问题解决: 如上就是没有给指定节点绑定id,才会出现报错。

你可能感兴趣的:(报错,vue)