如何在 Flask send_file() 或 send_from_directory() 之后 运行 编码
How to run code after Flask send_file() or send_from_directory()
我有一个基于 Flask 的网站,用户可以在其中下载一些 PDF 文件。
使用 Flask 的 send_file()
and 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 documentation 看来,
send_file()
使用 WSGI 的文件包装器来实现下载...也许这就是它 运行 异步下载的原因?
有没有办法调用 after_download()
以便在 send_file()
完成 将文件发送给用户后保证 运行 ?
你不能。虽然 send_file
在使用开发服务器时使用 Flask 流式传输文件,但它可能(并且确实应该为了性能)使用 Web 服务器(nginx、apache 等)和 X-SendFile
在生产中。由于 Web 服务器超出了应用程序的控制范围,所以你运气不好。
我有一个基于 Flask 的网站,用户可以在其中下载一些 PDF 文件。
使用 Flask 的 send_file()
and 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 documentation 看来,
send_file()
使用 WSGI 的文件包装器来实现下载...也许这就是它 运行 异步下载的原因?
有没有办法调用 after_download()
以便在 send_file()
完成 将文件发送给用户后保证 运行 ?
你不能。虽然 send_file
在使用开发服务器时使用 Flask 流式传输文件,但它可能(并且确实应该为了性能)使用 Web 服务器(nginx、apache 等)和 X-SendFile
在生产中。由于 Web 服务器超出了应用程序的控制范围,所以你运气不好。