search for: json_paramet

Displaying 1 result from an estimated 1 matches for "json_paramet".

Did you mean: json_params
2009 Jul 05
2
JSON data not decoded in Rails
...t success. On the server side ActiveSupport::JSON.decode isn''t decoding the data. Here is the code: Javacript: <a href="#" onclick=''send();return false;''>click</a> <script> function send() { var send_data_url = "/pages/change"; var json_parameters = $H({name: ''Violet'', occupation: ''character'', age: 25 }).toJSON(); new Ajax.Request(send_data_url, { method: ''post'', parameters: json_parameters, contentType: ''application/json;'' }); } Rails: def change() debugger...