我想知道是否有人可以对此有所了解
我正在使用带有will_paginate的acts_as_follower
控制器
@products = current_user.following_shops.includes(:products).collect{|u| u.products.paginate(:page => params[:page]).order("created_at DESC")}.flatten
看法
<table>
<% @products.each do |p| %>
<tr>
<td>
<%= image_tag p.shop.logo.url(:thumb_feed).to_s %>
</td>
<td>
<%= link_to(image_tag(p.f1.url(:table).to_s), product_path(p.id)) %>
<%= link_to p.name, product_path(p.id)%>
</td>
</tr>
<% end %>
</table>
<%= will_paginate(@products) %>
但是rails不断吐出这个错误:
未定义的方法“total_pages”