0

谁能推荐如何使用 will_paginate gem 按字母数字对列表进行分页?

有这个插件: http ://sermoa.wordpress.com/2010/08/25/rails-alphabetical-pagination/

但我希望能够使用 will_paginate 的方法

谢谢!

亚当

4

1 回答 1

1

我只是在我的模型中添加了这个:

default_scope order: 'users.name ASC'

尽管您也可以在控制器中执行此操作:

@users = User.page(params[:page]).order(:name)

与 kaminari 一起工作,我想,will_paginate

于 2012-06-30T14:40:20.540 回答