我将 will_paginate 用于我的应用程序主页,这是 static_pages 控制器的主页操作。
root 'static_pages#home'
will_paginate URL 如下
http://localhost:3000/static_pages/home?page=3
我宁愿在其中取出控制器名称并让它看起来像
http://localhost:3000/home?page=3
甚至更漂亮的东西
http://localhost:3000/home/3
我的分页看起来像这样
will_paginate @product_feed_items, :page_links => false, :previous_label => "Newer", :next_label => "Older"
我已经尝试了一些这样的事情,但没有运气
will_paginate(@product_feed_items, :params => { :controller => "static_pages", :action => "home" }, :page_links => false, :previous_label => "Newer", :next_label => "Older")
有什么好的解决方案吗?