码迷,mamicode.com
首页 > 其他好文 > 详细

Flask生成下载文件

时间:2016-01-08 20:31:35      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:flask 下载文件 content-disposition attachment

    浏览器访问的时候,如果想让用户下载一个文件,在http response里设置 Content-Disposition = attachment 然后设置filename即可。


下面的代码说明在python flask框架中如何生成一个下载文件。

第一种情况:

后台程序直接生成文件内容

content = "long text"
response = make_response(content)
response.headers["Content-Disposition"] = "attachment; filename=myfilename.txt"
return response


第二种情况:

读取一个服务器上的文件,供用户下载

response = make_response(send_file("myfiles.zip"))
response.headers["Content-Disposition"] = "attachment; filename=myfiles.zip;"
return response




本文出自 “烛影摇红” 博客,请务必保留此出处http://gccmx.blog.51cto.com/479381/1733021

Flask生成下载文件

标签:flask 下载文件 content-disposition attachment

原文地址:http://gccmx.blog.51cto.com/479381/1733021

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!