On Tue, Sep 16, 2008 at 10:57 AM, TheZ <[EMAIL PROTECTED]> wrote:
> parameters : {
>  user : {
>    first:'first_name',
>    last:'last_name'
>  }
> }

The Ajax.Request object does not handle nested parameters. You should
use a string instead.

'user[first]=first_name&user[last]=last_name'

This is happening because the AjaxRequest parses the parameters with
Object#toQueryString which does not parse nested objects.

http://prototypejs.org/api/object/toquerystring

-justin

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

Reply via email to