Answers for "3 best way to download a pdf on rest api call express"

0

node js serve pdf file

app.use('/pdf', express.static(__dirname + '/pathToPDF'));
Posted by: Guest on December-14-2020
0

express send pdf to view

res.setHeader('Content-Type', 'application/pdf')
res.setHeader('Content-Disposition', 'inline;filename=yolo.pdf')
Posted by: Guest on November-24-2020

Browse Popular Code Answers by Language