赞
踩
- axios.post('/api',{
- // 传参
- },
- {
- responseType:'blob' // 设置响应数据类型
- })
- .then(res=>{
- if (res.status == 200) {
- let url = window.URL.createObjectURL(new Blob([res.data]))
- let link= document.createElement('a')
- link.style.display='none'
- link.href=url
- link.setAttribute('download', fileName) // 自定义下载文件名(如exemple.txt)
- document.body.appendChild(link)
- link.click()
- }
- })
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。