私のHome#Index
ページには、これがあります:
<%= render 'home/popular_products', :collection => @products, :as => :product %>
私のHome#_popular_products
見解では、私はこれを持っています:
<div class="span2 recommended">
<%= image_tag product.image_url(:thumb).to_s %>
</div>
これは私が取得し続けるエラーです:
undefined local variable or method `product' for #<#<Class:0x007f871c4f6848>:0x007f871cdb7e28>
私が理解している限り、ステートメントで:as
属性を指定する必要さえないはずですが、を使用しただけでは機能しないため、これを明示的にしようとしました。render
:collection => @products
私Home#Index Controller
はこれを持っています:
@products = Product.all.sample(6)
考え?