On Wed, Feb 4, 2009 at 9:59 PM, Bobby Roberts <tchend...@gmail.com> wrote:

>
> > I'd guess you need to be calling getlist rather than get to pull all the
> > various values from the POST data.  (Which is a detail you wouldn't need
> to
> > worry about if you were using the standard form clean() framework...not
> sure
> > why you are seemingly winging it on cleaning form data instead of using
> the
> > mechanisms built into forms?)
> >
>
> Hi Karen -
>
>
> thanks for your reply.  I tried to do the following in the view:
>
>    Disaster=request.POST.getlist('Disaster','')
>

>
> on the form i selected a, b and c:
>
> when i submitted the form, I asserted the value and get this:
>
> TypeError at /submit/
> getlist() takes exactly 2 arguments (3 given)
>
> Can you provide me an example of how I should be using getlist?  I
> don't see anything in the docs related to forms and getlist.
>

Here:

http://docs.djangoproject.com/en/dev/ref/request-response/#django.http.HttpRequest.POST

it notes that request.POST is a QueryDict.  The QueryDict getlist method is
described here:

http://docs.djangoproject.com/en/dev/ref/request-response/#django.http.QueryDict.getlist

Notice it does not take a default argument, as it returns an empty list if
the key doesn't exist.  Thus you need to get rid of the default '' parameter
you had been passing to get.  (Searching the docs for getlist brings up this
page as the first hit.)


>
>
> Regarding the form clean() method, i'm looking for it but it would be
> a great help if you could point me in the right direction.
>

This page:

http://docs.djangoproject.com/en/dev/ref/forms/validation/

covers form validation in some detail.  It's the current version, so there
may be some differences for 0.96 (I don't recall, exactly), but the basic
structure, I believe, was there even in 0.96.

Karen

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to