I have a JSON API. If I post a single json record like this {"A":"1"} for example, rails with wrap_parameters enabled turns it into this: {"model" => {"A":"1"}}.
I want the user to be able to submit multiple records at once, for efficiency, so they don't have to have multiple requests. I would think the way to do this would be simply to wrap it in an array like this: [{"A":"1"},{"B":"2"}]. But then in rails I get it like this:
"_json"=>[{"A"=>"1"},{"B"=>"2"}]
"model"=>{}
Is there any way I could get rails to look at the array and interpret it correctly? Or should I just use _json?
JSON.parse(params["_json"]). – Jason Swett Jan 17 at 22:42