The use of Ruby will_paginate _ruby topics

Source: Internet
Author: User
The new version of Will_paginate has abandoned this practice, instead of using the gem approach, this article through the establishment of a foobar application to understand the use of will_paginate.

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

C:\>rails foobar-d MySQL

C:\>CD Foobar

C:\foobar>ruby script/generate Scaffold Article title:string Content:text

Set up the database at this point (C:\foobar\config\database.yml) and make sure that the database is established.

C:\foobar>rake db:migrate

C:\foobar>ruby Script/server

At this point, http://localhost:3000/articles can browse, add some data (such as 10), prepare for pagination.

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

The plugin version of the old Will_paginate does not have to be loaded explicitly in the Rails program, because rails automatically executes the init.rb file in the plugin directory when it starts, and the new Will_pagiante is in gem form, and there is no such mechanism. So it needs to be loaded explicitly in the Rails program:

# 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

At this point, restart the Webrick, and then execute the following command to install the appropriate gem:

C:\foobar>rake Gems:install

The installation is complete.

Modify the controller's index method, plus code similar to the following:

# C:\FOOBAR\APP\CONTROLLERS\ARTICLES_CONTROLLER.RB
@articles = Article.paginate:p Age => params[:p age],:p er_page => 2

Modify the corresponding template file, plus code similar to the following:

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

Restart the Webrick again, and then browse to see the paging effect.

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

Will_paginate's latest document: Http://github.com/mislav/will_paginate/wikis
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.