这是情景:
所以,产品与反馈没有任何关系,但订单有 我想将反馈显示为属于产品
model FEEDBACK
has_one :order
has_one :product, through: :order
model ORDER
belongs_to :product, touch: true
belongs_to :feedback
model PRODUCT
has_many :feedbacks
has_many :orders
我想在循环中获得产品的反馈
例如
controller HOME
@total_feedbacks = Feedback.joins(:product).where('products.id = ?', @product.id).where('buyer_feedback_date is not null').count
@average_rating_from_buyers = Feedback.joins(:product).where('products.id = ?', @product.id).where('buyer_feedback_date is not null').rated(Feedback::FROM_BUYERS).average(:buyer_rating)
view HOME
<table id="posts" class="product_table">
<tbody class="page">
<tr>
<% @products.last(22).each do |product|%>
<td>
<%=link_to product_path(product.id), :class=>"product" do %>
<span class="productName">
<%=product.name %></span>
<span class="price"><%=number_to_currency(product.price, :unit=> "R$") %></span>
<% if product.vitrine.feedbacks.present? %>
<div class="productFeeback">
<div><%= @average_rating_from_buyers %>"></div>
<%=@total_feedbacks %>
</div>
<% end %>
<% end %>
</td>
<% end %>
</tr>
</tbody>
</table>
使用此代码我正在
有人有提示吗?感谢&#39; S未定义的方法`id&#39;为零:NilClass
答案 0 :(得分:0)
在您的产品型号上,尝试:
has_many :feedbacks, through: :orders
对于&#34;未定义的方法ID&#34;错误,如果您可以包含更多的堆栈跟踪,这将有所帮助。
基于示例代码,我认为它必须在控制器中发生。正在引用@ product.id,但我没有看到@product被设置。