继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

vue flask文件下载,两步搞定

幕布斯7119047
关注TA
已关注
手记 432
粉丝 28
获赞 102

    今天给大家说一说vue flask文件下载的方法,具体如下:

1,首先定义后端flask接口,将文件转换为二进制流

@app.route('/download', methods=['GET'])

def download():

    file = open("./upload/test.zip", "rb").read()

    response = make_response(file)

    return response

2,前端发送请求获取数据

(1)首先可以直接通过a标签发送请求如下,服务器运行在本地5000端口

<a href="http://localhost:5000/download">下载数据</a>

(2)也可以通过fetch和axios发送请求

    fetch:因为fetch包裹了两层promise,第一层获取响应同时调用其blob方法将数据转为blob,第二层接收blob,并创建a标签实现下载

fetch('http://localhost:5000/download', {

  method: 'GET'

})

  .then((res) => {

    return res.blob()

  })

  .then(data => {

    const blobUrl = window.URL.createObjectURL(data)

    const a = document.createElement('a')

    a.style.display = 'none'

    a.download = 'test.zip'

    a.href = blobUrl

    a.click()

  })

    axios由于vue项目用axios更多,也可以使用axios,注意get请求的config是第二个参数进行配置的,而post是第三个;并且这里需要配置responseType为blob

this.$https.get('/download', {

  responseType: 'blob'

}).then((res) => {

  const blobUrl = window.URL.createObjectURL(res.data)

  const a = document.createElement('a')

  a.style.display = 'none'

  a.download = 'test.zip'

  a.href = blobUrl

  a.click()

})

    好啦,以上便是关于vue flask文件下载,两步搞定的全部内容,更多内容可关注慕课网其他文章~

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP