Download an epub file through axios & react-file-download lbraries in reactjs -


i trying fetch epub file server using axios , react-file-download. download code looks follows -

const filedownload = require('react-file-download'); export const handledownload = (url, bookname) => {   axios.get(url).then((res) => {     filedownload(res.data, bookname+'.epub');   }); }  

the file downloaded. see different size on disc different books. don't open. missing?

for epub files content type "application/epub+zip" try instead.

thanks saptha


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -