I'm new in Rails... smile
In my blog aplication I want to have a "Previous post" link and a "Next post" link in the bottom of my show view.
How do I do this?
Thanks!
|
I'm new in Rails... smile In my blog aplication I want to have a "Previous post" link and a "Next post" link in the bottom of my show view. How do I do this? Thanks!
| ||||
|
feedback
|
|
If each title is unique and you need alphabetical, try this in your
You can then link to those in the view.
Untested, but it should get you close. You can change | |||||||
feedback
|
|
This is how I did it. Firstly, add a couple of named scopes to your
Note the use of the Then in my
I'm sure this could be refactored to be less verbose, but the intent is clear. Obviously your markup requirements will be different to mine, so you may not choose to use an unordered list, for example. The important thing is the use of the Finally, simply call the helper method from your view:
| |||
feedback
|
|
Give the will_paginate Gem a try. It provides all the features you need to paginate your post entries. learn here too You can look at here too for example code if you want add next and previous buttons. | |||||
feedback
|
|
You really just need to run 2 queries, one for each of "prev" and "next". Lets assume you have a created_at column. Psuedo-code:
Of course "this_post" is the current post. If your posts are stored with an auto_increment column and you dont re-use IDs you can just use the id column in place of created_at - the id column should already be indexed. If you want to use the created_at column then you will definitely want to have an index on that column. | |||||||||
feedback
|