Pre Merge pull request !372 from Hacker/N/A
This commit is contained in:
commit
54005ad96a
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user