I have one serialized form named company
$("#company_form").serialize();
And parameters in post request looks like it should
company[name] company name
Now I need to append another serialized form to company JSON object. So far I tried to serialize user form same way and to add it like
company.user = user
and it appends it, but parameters are not serialized ok, they look like
name name=name&email=test%40test.com
instead
user[email] test@test.com
user[name] name
If request is successful in log file I should see something like
{"company"=>{"name"=>"Hahn-Orn",
"tagline"=>"transform dynamic supply-chains",
"bio"=>["Tenetur non ex aliquam et. Autem velit consequatur et ea aut quos debitis. Nulla quia impedit deserunt nesciunt. Dolores ipsam quod dolores id maiores. Atque iste quis nihil velit.", "Ducimus soluta omnis facilis illum nihil aspernatur. Aut quasi qui libero et sed. Fuga nesciunt dolorem.", "Ducimus itaque harum. Dolor officia labore rerum ullam. Veniam omnis et aut excepturi ut."]},
"user"=>{"name"=>"Isabelle Schuster",
"email"=>"jonathan_smith@example.com",
"password"=>"[FILTERED]",
"password_confirmation"=>"[FILTERED]"}}
serializewhich doesn't produce JSON. Show us the code that is relevant to problem – charlietfl Jan 25 at 11:02var user = $(this).serialize();var company = $("#form_builder").serialize();company.user = userIt appends me user data successfully but like url parameters. Now my question is how to append those parameters to be in serialized format, and not like URL parameters? – neowinian Jan 25 at 11:05