ajax请求文件流下载
发布时间:2020-12-16 03:04:44 所属栏目:百科 来源:网络整理
导读:$.ajax({ // url:BASEURL+‘/bill/download/invoice‘,url:‘http://loan-test.yinshuitong.com/backorg/bill/download/invoice‘,type:‘get‘,data:{ invoiceIdStr:invoiceShell.id },crossDomain: true == !(document.all),beforeSend: function(request)
$.ajax({
// url:BASEURL+‘/bill/download/invoice‘,url:‘http://loan-test.yinshuitong.com/backorg/bill/download/invoice‘,type:‘get‘,data:{
invoiceIdStr:invoiceShell.id
},crossDomain: true == !(document.all),beforeSend: function(request) {
request.setRequestHeader("Authorization",tokenString);
},responseType: ‘blob‘,success:function(result){
const excelBlob = result.data
if (‘msSaveOrOpenBlob‘ in navigator) {
// Microsoft Edge and Microsoft Internet Explorer 10-11
window.navigator.msSaveOrOpenBlob(excelBlob,‘invoice.pdf‘)
} else{
const elink = document.createElement(‘a‘) // 创建a标签
elink.download = ‘invoice.pdf‘
elink.style.display = ‘none‘
const blob = new Blob([excelBlob])
elink.href = URL.createObjectURL(blob)
document.body.appendChild(elink)
elink.click()
document.body.removeChild(elink)
}
}
})
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |