update ruoyi-ui/src/plugins/download.js.

从响应的headers中的Content-disposition获取filename,
This commit is contained in:
Hacker 2021-11-19 09:22:22 +00:00 committed by Gitee
parent 91ad85aec1
commit c556e42063

View File

@ -17,8 +17,11 @@ export default {
}).then(async (res) => { }).then(async (res) => {
const isLogin = await this.blobValidate(res.data); const isLogin = await this.blobValidate(res.data);
if (isLogin) { 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]) const blob = new Blob([res.data])
this.saveAs(blob, decodeURI(res.headers['download-filename'])) this.saveAs(blob, fileName)
} else { } else {
Message.error('无效的会话,或者会话已过期,请重新登录。'); Message.error('无效的会话,或者会话已过期,请重新登录。');
} }
@ -34,8 +37,11 @@ export default {
}).then(async (res) => { }).then(async (res) => {
const isLogin = await this.blobValidate(res.data); const isLogin = await this.blobValidate(res.data);
if (isLogin) { 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]) const blob = new Blob([res.data])
this.saveAs(blob, decodeURI(res.headers['download-filename'])) this.saveAs(blob, fileName)
} else { } else {
Message.error('无效的会话,或者会话已过期,请重新登录。'); Message.error('无效的会话,或者会话已过期,请重新登录。');
} }
@ -62,4 +68,3 @@ export default {
saveAs(text, name, opts); saveAs(text, name, opts);
} }
} }