HI All, I am trying to create an ActiveRecord object from a javascript object via JSON. However the controller fails to set the variables passed within the ActiveRecord object. As an example, a person object has two fields: firstname and lastname. The JSON generated by the JSON.stringify function of the JSON.org library produces: {"firstname" : "Joe" , "lastname" : "Bloggs"} However the controller requires: { "Person" : {"firstname" : "Joe" , "lastname" : "Bloggs"} } I am aware that in the normal course of events (for HTTP requests) the parameters for the request are nested under the class name of the model being created. What would be the neatest way for the controller to process the JSON requests as generated? Or alternatively how do you generate "correct" JSON from Javascript objects for passing to your controllers? TIA, Adam -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---