Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Nano Meko
Nano Meko
1,838 Points

Is there a way to pass a javascript variable to ruby code?

For example in my index.html.erb if I have a javascript array holding an array of selected posts such as:

var selected = [];

How do I pass this variable into ruby code on the same page:

<% Post.recent(selected[]).each do |post| %> ..... <% end %>

1 Answer

Jason Seifer
STAFF
Jason Seifer
Treehouse Guest Teacher

Hey Nano,

You need to contact the rails server with your variable somehow. This usually involves either an AJAX request or a POST/PUT to the server. There's no immediate way to get access to variables the way you describe :(