When I was using older versions of the libraries, I could create pdf just fine. But since these new versions I can't. Earlier I just downloaded jspdf.min.js file, but now I can see various of versions, like umd, es.. But I don't know, what to use (?), so I downloaded umd version.
I don't use angular or node.js, so I can't use require
or import
(with import I have an error: Uncaught SyntaxError: export declarations may only appear at top level of a module
) instructions in my javascript code before creating pdf document. So I'm using const { jsPDF } = window.jspdf;
to to use jsPDF class (without it I get error "Uncaught ReferenceError: jsPDF is not defined", after line const doc = new jsPDF();
).
But I want to use the plugin AutoTable also and in official page of the plugin https://github.com/simonbengtsson/jsPDF-AutoTable the author uses import or require, for me it doesn't work. When I try
const { jsPDF } = window.jspdf;
const doc= new jsPDF();
doc.autoTable({
head: [['Name', 'Email', 'Country']],
body: [
['David', '[email protected]', 'Sweden'],
['Castille', '[email protected]', 'Spain'],
],
})
I get the error Uncaught TypeError: pdf.autoTable is not a function
. How could I use the libraries right?
I guess jsPDF works for me with version umd and const { jsPDF } = window.jspdf;
(I created just a simple document with a string and it worked), but AutoTable doesn't work
Export autoTable method, import autoTable from 'jspdf-autotable'