我是 RoR 的新手,我想在我的应用程序中包含分页。
执行此任务的最佳方法是什么?请给我建议。是否可以在 rails 3.2.3 中使用will_paginate
gem ?
如果是,我应该包括哪种方法:
Post.where(:published => true).paginate(:page => params[:page]).order('id DESC')
Post.page(params[:page]).order('created_at DESC')
我是 RoR 的新手,我想在我的应用程序中包含分页。
执行此任务的最佳方法是什么?请给我建议。是否可以在 rails 3.2.3 中使用will_paginate
gem ?
如果是,我应该包括哪种方法:
Post.where(:published => true).paginate(:page => params[:page]).order('id DESC')
Post.page(params[:page]).order('created_at DESC')