Pass a variable into a partial, rails 3? Ask Question

Pass a variable into a partial, rails 3? Ask Question

I have a loop like such:

<% @posts.each do |post| %>
  <% render middle %>
<% end %>

Then in my middle partial, how do I access the current post?

ベストアンサー1

Try this:

<% @posts.each do |post| %>
  <%= render 'middle', :post => post %>
<% end %>

Like this you'll have a local variable post available within the partial.

おすすめ記事