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.
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:
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.