2011-12-01 8 views

答えて

2

あなたがレンダリング

<%= render :partial => 'stores', :collection => @stores, :locals => { :is_featured => is_featured } %> 
localsオプションを使用することができます

部分的には、メソッドとしてアクセスします:

<%= is_featured %> 
+0

これはRails 3なので、これを '<%= render @stores、:is_featured => is_featured%>'に短縮できます。 – cvshepherd

関連する問題