Ok, I'm going to use string (like: items_{{ data.id }})

Thanks.

regards.

On 26 Kwi, 21:31, Malcolm Tredinnick <malc...@pointy-stick.com> wrote:
> On Sun, 2009-04-26 at 10:20 -0700, eli wrote:
> > Hi,
>
> > I have problem:
> > In my template, I have some inputs with multiple name like:
> > <input type="text" name="values[{{ data.id }}]"
> > value="{{ data.name }}" />
>
> > How to get this data from request.POST in view method?
>
> > I tried:
> >  - request.POST.get('values', None)
> >  - request.POST.get('values[]', None)
>
> > but didn't wokr..
>
> The name attribute in the HTML form will have a string value for the
> name. You have to use that string value, whatever it might be. If you
> are creating the string value at template rendering time, then you have
> to also compute exactly the same string value when processing the form.
> That is, repeat the logic in your view when accessing request.POST.
>
> There's nothing Django does or can do here. You are specifying the name
> attribute's value, so only you know what it is when it comes time to
> access it in the view.
>
> Regards,
> Malcolm
--~--~---------~--~----~------------~-------~--~----~
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