【发布时间】:2017-08-18 15:33:40
【问题描述】:
我正在尝试使用 axios 和 react-file-download 从我的服务器获取 epub 文件。下载代码如下-
const FileDownload = require('react-file-download');
export const handleDownload = (url, bookName) => {
axios.get(url).then((res) => {
FileDownload(res.data, bookName+'.epub');
});
}
文件已下载。我看到不同书籍的光盘尺寸不同。但他们只是不打开。我错过了什么?
【问题讨论】: