When using location in respond with, it is ignoring validation errors and redirecting to the specified location. Is this expected behavior?

I checked in the responder module that it checking if there are any errors on the model. I inspected the model and it contains validation errors in the @solution object. What am I missing here?

controller:

def create
  @problem = Problem.find(params[:problem_id])
  @solution = @problem.solutions.build params[:solution]
  @solution.save
  respond_with(@solution, :location => detail_problem_solution_path(@problem, @solution)
end

model:

  validates :body, :presence => true, :unless => :reference

reference is true or false false.

link|improve this question

50% accept rate
Where did you get the reference to use :location? It's not in the docs: api.rubyonrails.org/classes/ActionController/… – coreyward Nov 18 '11 at 23:02
I found it in several online resources. An example: asciicasts.com/episodes/224-controllers-in-rails-3 – chetu Nov 19 '11 at 16:20
feedback

1 Answer

The only way I was able to solve is this:

  def create
    @problem = Problem.find(params[:problem_id])
    @solution = @problem.solutions.build solution_params
    success = @solution.save
    respond_with(@solution) do |format|
      format.html {redirect_to detail_problem_solution_path(@problem, @solution) } if success
    end
  end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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