I want to start processing some files from a django view and I want to be able to send the name of the files to the browser as they are processed. Is there a way to do this (easily)? I could probably do this using threads and ajax calls, but I want the simplest solution for now.
|
1
|
|
|
|
|
|
I found what I needed in an answer from one of the links that Andre Miller provided. I found out that's possible to pass an iterator to HttpResponse so I used this code and it worked:
|
||
|
|
|
|
First of all, make sure you output a |
||
|
|
|
You would need to use some sort of queuing process if you want to kick off the task when the view is rendered, otherwise the process will finish first before anything is returned to the browser. Once the task is running asynchronously you could use either AJAX to update the page with the latest status or simply use a meta-refresh inside the page to load the new content. There is Django queue server here you could use: http://code.google.com/p/django-queue-service/ It would seem that this question has also been asked a few times before:
|
|||
|
|
|
If you clear the output buffer, then you should be able to see what has been processed. |
||||
|
