On 9/10/07, Dushyant Sharma <[EMAIL PROTECTED]> wrote:
>
> save data
>         new_data = request.POST.copy()              # these two lines
> are
>         new_data.update(request.FILES)               # very important

These two lines are no longer important. An alternate approach to
handling file input was recently introduced to the SVN trunk version
of Django.

You might want to look at the documentation for newforms, in particular:

http://www.djangoproject.com/documentation/newforms/#binding-uploaded-files-to-a-form
http://www.djangoproject.com/documentation/newforms/#filefield
http://www.djangoproject.com/documentation/newforms/#imagefield

These describes the correct procedure for handling File input with newforms.

Yours,
Russ Magee %-)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to