This seems like something that should be easily implemented, but I can't find any documentation on it. All I'm trying to do is take a serialized list in JavaScript and save it to an instance variable array(or hash) in Rails. I don't need to save it to the database. I just need to be able to manipulate it within rails.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Javascript code runs on the client, and your Rails code runs on the server, so there's no way to directly pass your Javascript data to Rails. Instead you'd likely have to set up a controller to specifically handle an HTTP POST with your serialized data as the payload. |
|||
|
|
|
Here are some options on how to do this: http://www.activars.com/2009/04/13/pass-javascript-variables-to-rails-controller/ |
|||
|
|
|
You could try setting a hidden field with the list values and then setup a controller action to handle the data. |
|||
|
|