导入Js PDF的自动插件时出错

时间:2017-10-31 07:33:21

标签: javascript html jspdf jspdf-autotable

我只是在尝试将此插件导入我的项目时感到非常痛苦。

我从他们的GitHub获取链接     https://threejs.org/

我将脚本添加到HTML头但它无效。

 <script src="https://github.com/simonbengtsson/jsPDF-AutoTable"></script>

我使用js pdf而没有导入任何东西,它正在工作,但我不能使用插件

function(){

      var pdf = new jsPDF();
      //This lane is not working
      //pdf.autoTable(headerTABLE, myTableArray);
      //
      pdf.addPage();
      var dataURLLogo = canvasLogo.toDataURL("image/jpeg;base64");
      var dataURLLogoSEFAC = canvasLogoSEFAC.toDataURL("image/jpeg;base64");
      var dataURLGrafica = canvas.toDataURL("image/jpeg;base64");

      pdf.setFontSize(25);
      pdf.setTextColor(159, 233, 96);
      pdf.setFontType('bold');
      pdf.addImage(dataURLLogo, 'jpeg', 35,25,20,20);  
  

错误:pdf.autoTable不是函数

抱歉我的英语。求救!

1 个答案:

答案 0 :(得分:1)

最后我得到了anwser:

只需在m html head中的所有其他脚本之前添加这两个脚本。

    <script src="https://cdn.rawgit.com/simonbengtsson/jsPDF/requirejs-fix-dist/dist/jspdf.debug.js"></script>
    <script src="https://unpkg.com/jspdf-autotable@2.3.2"></script>

感谢所有试图回答我问题的人!