我正在尝试对产品详细信息(图像)进行分页,但出现此错误。
NoMethodError in Home#index Showing /home/aws002/webpage/app/views/home/index.html.erb where line #6 raise: undefined method `current_page' for #
这是我的产品控制器代码:
def index
@rroducts = Product.order(:name)
Kaminari.paginate_array(@products).page(params[:page]).per(3)
respond_to do |format|
format.html # index.html.erb
format.json { render json: @products }
end
end
我正在尝试在主页中显示。查看文件代码为:
<% @products=Product.all %>
<%= paginate @products %>
<% @products.each do |p|%>
<%= image_tag("Images/#{p.id}.jpeg",:alt => p.name) %>
<p> Price: </p>
<%= p.price %>
<p> Discount: </p>
<%= p.discount %>
<br/>
<% end %>
请帮我解决这个问题。提前致谢。