|
@@ -16,10 +16,10 @@ export const getUuid = () => {
|
|
|
* @returns {Promise} - 返回下载Promise
|
|
|
*/
|
|
|
export const downloadFile = (url, fileName) => {
|
|
|
- // console.log('url',url);
|
|
|
- // console.log('fileName',fileName);
|
|
|
- return new Promise((resolve, reject) => {
|
|
|
- try {
|
|
|
+ return fetch(url)
|
|
|
+ .then(response => response.blob())
|
|
|
+ .then(blob => {
|
|
|
+ const url = window.URL.createObjectURL(blob)
|
|
|
const link = document.createElement('a')
|
|
|
link.href = url
|
|
|
link.download = fileName
|
|
@@ -27,9 +27,6 @@ export const downloadFile = (url, fileName) => {
|
|
|
document.body.appendChild(link)
|
|
|
link.click()
|
|
|
document.body.removeChild(link)
|
|
|
- resolve()
|
|
|
- } catch (error) {
|
|
|
- reject(error)
|
|
|
- }
|
|
|
- })
|
|
|
+ window.URL.revokeObjectURL(url)
|
|
|
+ })
|
|
|
}
|