Pre Merge pull request !372 from Hacker/N/A

This commit is contained in:
Hacker 2022-05-01 12:24:09 +00:00 committed by Gitee
commit 54005ad96a
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -18,8 +18,11 @@ export default {
}).then(async (res) => {
const isLogin = await blobValidate(res.data);
if (isLogin) {
const contentDisposition = decodeURI(res.headers['content-disposition'])
const result = new RegExp('filename=([^;]+\\.[^\\.;]+);*').exec(contentDisposition)
const fileName = result[1].replace(/\"/g, '')
const blob = new Blob([res.data])
this.saveAs(blob, decodeURI(res.headers['download-filename']))
this.saveAs(blob, fileName)
} else {
this.printErrMsg(res.data);
}
@ -35,8 +38,11 @@ export default {
}).then(async (res) => {
const isLogin = await blobValidate(res.data);
if (isLogin) {
const contentDisposition = decodeURI(res.headers['content-disposition'])
const result = new RegExp('filename=([^;]+\\.[^\\.;]+);*').exec(contentDisposition)
const fileName = result[1].replace(/\"/g, '')
const blob = new Blob([res.data])
this.saveAs(blob, decodeURI(res.headers['download-filename']))
this.saveAs(blob, fileName)
} else {
this.printErrMsg(res.data);
}
@ -68,5 +74,4 @@ export default {
const errMsg = errorCode[rspObj.code] || rspObj.msg || errorCode['default']
Message.error(errMsg);
}
}
}