I'm sending an AJAX request and posting some json data to the server. How do I access this data in my controller (I'm using Ruby on Rails).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It should be trivial:
|
|||
|
|
|
If you set the Content-Type of the post request to Example using jQuery:
|
|||
|
|
|
Access the parameter through the params hash. There should be no need to decode JSON. Rails should convert it into a hash for you. |
|||
|
|