标签: python django
我在 django 中有一个视图,我需要从外部服务下载 pdf ,然后在 django 视图中将其作为响应返回
我该怎么办?
这是我在下面尝试过的事情:
response = urlopen(urlPdf) return FileResponse(response, as_attachment=True, filename='hello.pdf')