rails 分页

来源:互联网 发布:网络射击游戏排行2016 编辑:程序博客网 时间:2024/06/05 14:13

1)在Gemfile里面
gem "kaminari"

2)執行bundleinstall就會安裝。裝好後需要重新启动服务器才會載入。(注意一定要重启服务器)

3)修改app/controllers/posts_controller.rbindexAction如下

def index  @posts = Event.page(params[:page]).per(5)end

4)編輯app/views/events/index.html.erb,加入

<%= paginate @posts %>

进入http://localhost:3000/posts/,你可能需要多加幾筆資料就會看到分頁效果了。


0 0
原创粉丝点击