js 页面下载3中方式

Posted bt2882

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 页面下载3中方式相关的知识,希望对你有一定的参考价值。

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中方式的主要内容,如果未能解决你的问题,请参考以下文章

如何用js在pc页面不打开新页面就直接下载PDF的方式

Js生成表单使用post提交方式带参数下载文件,页面不跳转

js中刷新页面的方式总结

js中刷新页面的方式总结

Vue.js下载方式及基本概念

Vue基础入门到项目实战教程 —— Vue.js下载与安装