概述
这里以下载img的src图片为例
首先增加需要跨域下载的接口
export const getImage(url)=>{
return axios({
method:'get',
url:'/loadImg'+url,
responseType:'blob'
})
}
这里添加/loadImg的标识用于匹配服务器使用
然后在vue.config.js的devServer中添加以下配置
proxy:{
'/loadImg':{
target:'http://跨域地址:1234/imgpool',
ws:false,
changeOrigin:true,
pathRewrite:{
'^/loadImg':''
}
}
}
在这里配置好接口跨域访问的地址
然后就可以在页面中写下载文件的逻辑了
downloadImage(blob){
var name=new Date().getTime()
var a=document.createElement('a')
a.download=name+'.png'
a.href=window.URL.createObjectURL(blob.data)
document.body.appendChild(a)
a.click()
document.body.removeChild(a)
}
这样就可以实现跨域下载了
最后
以上就是粗犷皮皮虾为你收集整理的vue跨域下载img的src图片的全部内容,希望文章能够帮你解决vue跨域下载img的src图片所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复