Sorry for the inconvenience, I hope you can help me with my question!
I'm developing on a platform that in front
has Angular 4
and the Back
is Spring
,
In the front
I use a npm
that is called pdf make
, and it generates the pdf
in a window or they are downloaded automatically, I occupy that when it is generated save it in my server so that later they can make use of it.
PdfMake
allows me to generate a blob
or a base64
when generating the pdf
, I can capture all the cadena
of the document, but I do not know how to send it to back
so that my back
already do the creation of the document and save it!
I was seeing that with URL.createObjet
(something like that),
but I really do not know how to send it!
If you could help me I would appreciate it.