I have a blogging application with comments. Currently, the comments controller has a standard create action
def create
@comment = current_user.build(params[:comment])
respond_to do |format|
if @comment.save
format.html { redirect_to @comment.post }
end
end
After creation, the user is redirected to the blog post for which the comment was made. How do I redirect lower down in the page, to where the new comment is?
posts/show.html.erb
<div id="post_show">
<%= @post.content %>
<%= render @post.comments %>
</div>
comments/_comment.html.erb
<div id="comment_partial">
<%= comment.content %>
</div>
Is there something I can add to my HTML, then reference in my controller? Do I need to "save" the location somehow? Thanks for helping out a newbie!
You can use the anchor
option in path helpers, e.g.
redirect_to post_path(@comment.post, anchor: 'some-id')
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