Dajngo CSV 文件无法下载?当我们下载一个大的 CSV 文件时,它需要一些时间? Django 502 bad gateway nginx error Django
如何下载显示 502 bad gateway 错误的大型 CSV 文件? 我得到了下面添加的解决方案。 实际上,在这里,我们使用流引用。在此概念中,例如,我们下载一部电影,它将在浏览器中下载并在完成后显示状态,这将提供在与 CSV 文件下载完全相同的文件夹中显示的选项,这将向我们显示。
How can I download a large CSV file that shows me a 502 bad gateway error?
I get this solution I added in below.
Actually, in this, we use streaming references. In this concept for example we download a movie it's will download in the browser and show status when complete this will give the option to show in a folder same as that CSV file download completely this will show us.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一种解决方案可以解决此错误,即增加 nginx 时间,但这会影响成本,因此这是使用 Django 流的更好方法。流媒体就像一个例子,当我们添加一部电影以供下载时,它会在浏览器上下载。这个概念用在 Django 流中。
在 Django 中为此编写 View。
view.py
urls.py
请使用以下链接作为参考。
https://docs.djangoproject.com /en/4.0/howto/outputting-csv/#streaming-large-csv-files
GIT。
https://gist.github.com/niuware/ba19bbc0169039e89326e1599dba3a87
GIT
手动将行添加到 StreamingHttpResponse (Django)
There is one solution for resolving this error to increase nginx time but this is will affect cost so better way to use Django streaming. streaming is like an example when we add a movie for download it's downloading on the browser. This concept is used in Django streaming.
Write View for this in Django.
views.py
urls.py
For reference use the below links.
https://docs.djangoproject.com/en/4.0/howto/outputting-csv/#streaming-large-csv-files
GIT.
https://gist.github.com/niuware/ba19bbc0169039e89326e1599dba3a87
GIT
Adding rows manually to StreamingHttpResponse (Django)