码迷,mamicode.com
首页 > Web开发 > 详细

js 页面下载3中方式

时间:2019-09-24 13:53:49      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:oca   res   new   ref   location   tee   win   cli   export   

1. window.location.href = ‘请求路径‘get方式
}


2. fetch(‘请求路径方式拼接上去‘get方式).then(res => res.blob().then(blob => {
const a = document.createElement(‘a‘)
const url = window.URL.createObjectURL(blob)
const filename = ‘aa.xlsx‘
a.href = url
a.download = filename
a.click()
window.URL.revokeObjectURL(url)
}))


3.this.exportData.campusId = this.campusId
this.exportData.time = this.changeTimes(this.createEndTime)
axios({
url:‘路径‘
method: ‘方式‘,
type: ‘application/vnd.openxmlformats-officedocument.spreadsheetml.sheet‘,
data: 参数,
responseType: ‘blob‘,
timeout: 120000
}).then(response => {
const blob = new Blob([response.data])
const fileName =‘aa.xlsx‘
if (‘download‘ in document.createElement(‘a‘)) { // 非IE下载
const elink = document.createElement(‘a‘)
elink.download = fileName
elink.style.display = ‘none‘
elink.href = URL.createObjectURL(blob)
document.body.appendChild(elink)
elink.click()
URL.revokeObjectURL(elink.href) // 释放URL 对象
document.body.removeChild(elink)
} else { // IE10+下载
navigator.msSaveBlob(blob, fileName)
}

js 页面下载3中方式

标签:oca   res   new   ref   location   tee   win   cli   export   

原文地址:https://www.cnblogs.com/bt2882/p/11577632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!