I am new to rails so excuse any easy questions. I have developed a blog and I am doing some customization. Just curious, if I want to render a specific post on my index.html.erb page is that possible. For instance if I create a post, title: Cool Post and it has a post_id of 25 in the table, in my index page can I call that specific post to be rendered?
|
Its hard to say exactly how your system is setup, but the "correct" way to do it in Rails, is to do something like in the
And in your
Of course I am completely guessing on the fields on your Edit: If all you want to do is render the
This call assumes the |
|||||
|
|
I think his question is about rendering/redirecting. You should do (as a last line in your controller)
or
First one to show a post, second one to show post after creation/update. |
|||
|
|
While dcneiner's solution is technically correct, the Rails way is not to hard code these things. Once the blog is operational you will have to modify the source directly to change this post. This is not advised. I'm going to suggest you add an extra column to the Posts table to denote whether a Post should be permanently featured on the front page. This allows you to dynamically update your permanent posts with nothing more than a checkmark when you create it. Eg:
Post.featured will return your featured post for use on your front page, ordered newest to oldest. If you only want one featured post at a time you can add the following to the Post model
|
|||
|
|