我正在使用来自http://github.com/mislav/will_paginate
的will paginate gem路线:
map.resources :post do |post|
post.resources :comments
end
后控制器:
@post = Post.first
@comments = @post.comments.paginate :page => params[:page], :per_page => 10
我的问题在于:
<%= will_paginate @comments %>
这会生成/ post / 1?page = 1的链接 我需要的是/ post / 1 / comments?page = 1
有没有办法告诉will_paginate使用什么url helper? (如post_comments_path
)
有什么想法吗?