gpt4 book ai didi

python - 如何在 Flask send_file() 或 send_from_directory() 之后运行代码

转载 作者:太空狗 更新时间:2023-10-29 20:24:09 26 4
gpt4 key购买 nike

我有一个基于 Flask 的网站,用户可以在其中下载一些 PDF 文件。

使用 Flask 的 send_file() 很容易实现和 send_from_directory() .

例如:

@app.route('/downloadreport')
def download_report():
return send_from_directory(
'/reports',
'my_report.pdf',
as_attachment=True)

我想执行一些逻辑(我们称它为 after_download())下载完成后

我试过使用 @after_this_request钩。但看起来 send_file() 是异步运行的,所以 @after_this_request 可能会在文件下载之前触发。

  • 例如,如果文件非常大,下载可能需要一段时间,所以 @after_this_request 似乎在下载文件时触发。
  • 它看起来来自 the documentationsend_file() 使用 WSGI 的文件包装器来实现下载...也许这就是它异步运行的原因?

有没有一种方法可以调用 after_download() 以确保在 send_file() 完成 将文件发送到用户?

最佳答案

你不能。虽然 send_file 在使用开发服务器时使用 Flask 流式传输文件,但它可能(并且确实应该为了性能)使用网络服务器(nginx、apache 等)和 X-SendFile 在生产中。由于 Web 服务器超出了应用程序的控制范围,所以你运气不好。

关于python - 如何在 Flask send_file() 或 send_from_directory() 之后运行代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29192132/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com