python 生成并下载文件-后端


	python 生成并下载文件-后端
[编程语言教程]

txt文件

生成并下载txt文件:

@app.route(‘/download‘, methods=[‘GET‘])
def download():
    content = "long text"
    response = make_response(content)
    response.headers["Content-Disposition"] = "attachment;     
    filename=myfilename.txt"
    return response
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python 生成并下载文件-后端