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.

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.

share|improve this question

3 Answers

up vote 2 down vote accepted

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.

share|improve this answer
Thanks! That did it. – Jeff Jun 28 '11 at 23:35

You could try setting a hidden field with the list values and then setup a controller action to handle the data.

share|improve this answer
Would this still work asynchronously? – Jeff Jun 28 '11 at 23:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.