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.

I have a partial that I want rendered with a collection and another variable. Is it possible to pass more than one variable to a partial?

To illustrate:

Category HABTM Brands

This is just semi-pseudo-code, but I want to do something like:

<% @categories.each do |c| %>
    <%= c.name %>
    <%= render :partial => "mypartial", :collection => c.brands, :object => c.id %>
<% end %>

The partial needs the category id as well as the "current_brand". Any ideas?

share|improve this question

2 Answers

up vote 3 down vote accepted

Inside of your view, you pass a hash to the :locals key-value pair in the options hash argument.

<%= render :partial => 'partial', :locals => { :foo => 'a', :bar => 'b' } %>

... and these keys become available as variables in your partials.

Foo is: <%= foo %>

Bar is: <%= bar %>
share|improve this answer

You can give a partial any number of variables with the :locals option. It takes a hash of variable names and values.

share|improve this answer

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.