vote up 0 vote down star

Hi,

I want to submit a form (by POST) that will submit N (unknown) user_id's. Can I make a view receive those ids as a list?

For example

def getids(request,list):

   for id in list:
       usr = User.objects.get(pk=id);
       //do something with it.
       usr.save()

Is

for id in request.POST['id']:

even possible?

I'm looking for the best accepted way.

flag

57% accept rate

4 Answers

vote up 0 vote down

You can create the form fields with some prefix you could filter later.

Say you use form fields with names like uid-1, uid-2, ... uid-n

Then, when you process the POST you can do:

uids = [POST[x] for x in POST.keys() if x[:3] == 'uid']

That would give you the values of the fields in the POST which start with 'uid' in a list.

link|flag
That should be x[:3], not x[:2] – Ian Clelland Sep 29 at 19:27
yeap, sorry, my bad – Facundo Sep 29 at 22:28
vote up 2 vote down

If you are submitting lots of identical forms in one page you might find Formsets to be the thing you want.

You can then make one Form for the userid and then repeat it in a Formset. You can then iterate over the formset to read the results.

link|flag
Yes, i considered that approach, but as a newbie with a deadline i declined it. Will probably use formsets in the future. Thanks ! – Tom Sep 27 at 13:18
vote up 2 vote down

Very close. The POST parameters are actually contained in a QueryDict object in the request.

def getids(request):
    if request.method == 'POST':
        for field in HttpRequest.POST:
            // Logic here
link|flag
Thanks! I'll take a look at it. – Tom Sep 26 at 23:05
vote up 3 vote down

You should read about QueryDict objects:

>>> q = QueryDict('a=1&a=2&a=3')
>>> q.lists()
[('a', ['1', '2', '3'])]
link|flag
Will do, thanks – Tom Sep 26 at 23:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.