控制器
def show
@product = Product.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @product }
end
end
看法
<% @product.compoFathers.each do |compo| %>
<% compo.productSon.suppliers.each do |sonSuppl| %>
<%= sonSuppl.price %>
<% end %>
<% end %>
我寻找最低、平均和最高价格。
请谢谢。