> What method do I use to see all the POST elements?
request.POST is a dictionaryuse any method that is convenient to
you.
For example:
request.POST.items()
request.POST.has_key()
etc
But remember that request.POST usually contains uncleaned dataso
might have to clean them before you use
You could also throw an exception, if you have debug on it'll have
everything including the post data.
On Jul 22, 11:34 pm, Doug B <[EMAIL PROTECTED]> wrote:
> Assuming you just want to debug and are using the dev server you can
> just do "print request.POST" and it will show up on the dev server
Assuming you just want to debug and are using the dev server you can
just do "print request.POST" and it will show up on the dev server
console. The results aren't all that pretty, but usable.
--~--~-~--~~~---~--~~
You received this message because you are subscr
3 matches
Mail list logo