在使用Flask的python中,如何写出要下载的对象?
我正在使用Flask并正在运行领班。我将数据存储在内存中,希望用户能够将其下载到文本文件中。我不想将数据写到本地磁盘上的文件中并使其可供下载。
回答:
Flask文档的“样式”部分介绍了将文件流传输到客户端而不将其保存到磁盘的过程,特别是在流传输部分。基本上,您要做的是返回一个Response
包装了迭代器的完整对象:
from flask import Response# construct your app
@app.route("/get-file")
def get_file():
results = generate_file_data()
generator = (cell for row in results
for cell in row)
return Response(generator,
mimetype="text/plain",
headers={"Content-Disposition":
"attachment;filename=test.txt"})
以上是 在使用Flask的python中,如何写出要下载的对象? 的全部内容, 来源链接: utcz.com/qa/406081.html