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
Post a Comment