How to program multi file upload with Django jquery [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this questionI need to program the system where user can select multiple files from the windows
- User selects Multiple files with browser
- The web page shows the all filenames in list
- Then when user click on start upload
- Then i see the progress bar in front of each file and also size in KB showing how much has been uploaded . Li开发者_运维技巧ke google basic file upload in google docs
Currently i know only how to upload single file with django but i have no idea how should i start with this
For the jQuery upload part, you could use the uploadify plugin:
http://www.uploadify.com/demos/
Just my 2 cents. Hope this helps. Cheers
Plupload (http://www.plupload.com/example_queuewidget.php) is another option for a jQuery plugin to do multifile upload and has more active development. I've used both Uploadify and Plupload, both are nice, Plupload has more bells and whistles though and has things like HTML 5 drag/drop from desktop supported.
If you already do single file uploads your django page for handling these uploads shouldn't differ too much because as the uploaders go through the queue they will all make individual requests to your django script to handle an upload.
Helpful links:
http://www.uploadify.com/forums/discussion/7195/uploadify-3.0-beta-with-django/p1
https://github.com/tstone/django-uploadify/wiki
Code samples for Django + SWFUpload?
I've tried a couple of third-party solutions, and the easiest to integrate with django (especially if you're using jquery) is: https://github.com/blueimp/jQuery-File-Upload
You just write a simple ajax view to save the uploaded files.
精彩评论