axios请求文件流下载文件

 

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()
    }
})

源码

你可能感兴趣的:(☛,Axios)