I need help with the responder respond_with, 'cause when I create a new post (in this case) It doesn't redirect to the location specified. What can be?. This is the piece of my code that creates a new post but It's be redirected to create.html.erb and not the index.html.erb that I specified.

 def create
    @post = Post.create(params[:post])
    respond_with(@post, :status => :created, :location => posts_url)
 end
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

try to use "redirect_to" (from ACIIcasts - Controllers in Rails 3):

redirect_to @result, :notice => "Successfully converted original data."

If you are not confortable with the solution i found a workaround in a similar post: link

def convert
  @result = Result.find(params[:id])
  @result.convert_original_data
  success = @result.save
  respond_with(@result) do |format|
    format.html {redirect_to result_path(@result) } if success
  end
end
link|improve this answer
It works, but the reason that I'm using respond_with is to avoid the specification of each format. So, Why the location attr doesn't work?. Thanks for help. – Dagosi Dec 27 '11 at 15:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.