gpt4 book ai didi

Django - 持续发送输出

转载 作者:行者123 更新时间:2023-12-03 11:06:56 35 4
gpt4 key购买 nike

我想从 django View 开始处理一些文件,并且我希望能够在处理文件时将文件的名称发送到浏览器。有没有办法(轻松)做到这一点?我可能可以使用线程和 ajax 调用来做到这一点,但我现在想要最简单的解决方案。

最佳答案

我在 answer 中找到了我需要的东西来自安德烈米勒提供的链接之一。

我发现可以将迭代器传递给 HttpResponse 所以我使用了这个代码并且它工作了:

def import_iter():
""" Used to return output as it is generated """
# First return the template
t = loader.get_template('main/qimport.htm')
c = Context()
yield t.render(c)
# Now process the files
if req.method == 'POST':
location = req.POST['location']
if location:
for finfo in import_location(location):
yield finfo+"<br/>"

return HttpResponse(import_iter())

关于Django - 持续发送输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1624149/

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