大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全家桶1年46,售后保障稳定
vue下载文件常用的几种方式
一、直接打开
直接打开是指我们直接使用
window.open(URL)
的方法
优点:简单操作
缺点:没办法携带token
二、我们可以自己封装一个方法,比如如下:
import axios from "axios"
import * as auth from '@/utils/auth.js'
let ajax = axios.create({
baseURL: process.env.VUE_APP_BASE_API,
timeout: 100000
});
ajax.interceptors.request.use(config => {
config.headers = {
Authorization: auth.getToken(),
// OrgId: auth.getUser().orgId,
// UserId: auth.getUser().id,
}
return config
},
err => {
return Promise.reject(err)
})
let downloadFile = async (url, formData, options) => {
await ajax.post(url, formData, {
responseType: 'arraybuffer'}).then(resp => download(resp, options))
}
let getFile = async (url, options) => {
await ajax.get(url, {
responseType: 'blob'}).then(resp => download(resp, options))
}
let download = (resp, options) => {
let blob = new Blob([resp.data], {
type: options.fileType ? options.fileType : 'application/octet-binary'})
//创建下载的链接
let href = window.URL.createObjectURL(blob)
downloadBlob(href, options.fileName)
}
let downloadBlob = (blobUrl, fileName, revokeObjectURL) => {
let downloadElement = document.createElement('a')
downloadElement.href = blobUrl
//下载后文件名
downloadElement.download = fileName
document.body.appendChild(downloadElement)
//点击下载
downloadElement.click()
//下载完成移除元素
document.body.removeChild(downloadElement)
if (revokeObjectURL == null || revokeObjectURL) {
//释放掉blob对象
window.URL.revokeObjectURL(blobUrl)
}
}
let getDownloadFileUrl = async (url, fileType) => {
let blob
await ajax.get(url, {
responseType: 'blob'}).then(resp => {
blob = new Blob([resp.data], {
type: fileType ? fileType : 'application/octet-binary'});
})
return window.URL.createObjectURL(blob);
}
let getDownloadFileUrlByPost = async (url, data, fileType) => {
let blob
await ajax.post(url, data, {
responseType: 'blob'}).then(resp => {
blob = new Blob([resp.data], {
type: fileType ? fileType : 'application/octet-binary'});
})
return window.URL.createObjectURL(blob);
}
let getDownloadFileBlob = async (url, fileType) => {
let blob
await ajax.get(url, {
responseType: 'blob'}).then(resp => {
blob = new Blob([resp.data], {
type: fileType ? fileType : 'application/octet-binary'});
})
return blob;
}
export default {
ajax,
downloadFile,
getFile,
getDownloadFileUrl,
getDownloadFileUrlByPost,
getDownloadFileBlob,
downloadBlob
}
然后在我们调用的那个页面中直接引入使用就好啦
//先引用
import ajax from '../../utils/ajax.js'
//使用
ajax.downloadFile('URL',null,{
下载的文件名称})
这样看是不是就挺容易的
希望能帮助到你
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/207132.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...