ruby will_paginate的用法

來源:互聯網
上載者:User

新版本的will_paginate已經拋棄了這樣的做法,轉而使用gem的方式,本文通過建立一個名為foobar的應用來瞭解一下will_paginate的用法。

==============================

C:\>rails foobar -d mysql

C:\>cd foobar

C:\foobar>ruby script/generate scaffold article title:string content:text

此時設定一下資料庫(C:\foobar\config\database.yml),並且確保相關資料庫已經建立好了。

C:\foobar>rake db:migrate

C:\foobar>ruby script/server

此時,http://localhost:3000/articles可以瀏覽了,添加一些資料(比如十條),為分頁做準備。

===============================

plugin形式的舊版will_paginate不用在rails程式裡顯式的載入,這是因為rails啟動時會自動執行外掛程式目錄下的init.rb檔案,而新版will_pagiante採用的是gem形式,沒有這樣的機制,所以需要在rails程式裡顯式的載入:

# C:\foobar\config\environment.rb
Rails::Initializer.run do |config|
config.gem 'mislav-will_paginate', :version => '~> 2.3.2', :lib => 'will_paginate',
:source => 'http://gems.github.com'
end

此時,重啟一下WEBrick,然後執行如下命令安裝相應的gem:

C:\foobar>rake gems:install

安裝就完成了。

修改控制器的index方法,加上類似下面的代碼:

# C:\foobar\app\controllers\articles_controller.rb
@articles = Article.paginate :page => params[:page], :per_page => 2

修改對應的模板檔案,加上類似下面的代碼:

# C:\foobar\app\views\articles\index.html.erb
<%= will_paginate @articles %>

再次重啟一下WEBrick,然後瀏覽就可能看到分頁效果了。

===============================

will_paginate的最新文檔:http://github.com/mislav/will_paginate/wikis

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.