I'm building a blog using RoR. I have the index.html.erb page for the posts showing all of the posts. It displays all of the posts and all of their content. I'd like to limit the content that is shown to a certain number of characters and then put a "read more" link to go to the show page for that individual blog post. Any help with how to do this? Thanks.
To show a certain number of characters, you can use truncate helper method to truncate your article.
truncate("Once upon a time in a world far far away")
# => "Once upon a time in a world..."
If you also have question about "read more" link, please read "resource routing" section in Rails Routing from the Outside In. You should show all your posts in index
action (probably with pagination), and show single post in show
index. Truncate the post in the index
view, and show the full post in show
view.
<%= truncate post.content, length: 160 %>
<%= link_to 'read more', post %>
See the documentation for truncate: http://api.rubyonrails.org/classes/String.html#method-i-truncate
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With