vote up 1 vote down star

I have a basic model in which i have specified some of the fields to validate the presence of. in the create action in the controller i do the standard:

@obj = SomeObject.new(params[:some_obj])

if @obj.save
  flash[:notice] = "ok"
  redirect...
else
  flash[:error] = @obj.errors.full_messages.collect { |msg| msg + "<br/>" }
  redirect to new form
end

however when i redirect to the new form, the errors show, but the fields are empty. is there a way to repopulate the fields with the entered values so the errors can be corrected easily?

flag

2 Answers

vote up 4 vote down check

You render :action => :new rather than redirecting.

link|flag
The reason behind this is so that you keep the object in memory rather than creating a new object; the redirect starts an entirely new request. – Ian Terrell Oct 1 '08 at 19:15
The downside is that the form for creating a SomeObject now has two URLs: /some_objects/new # for the first form /some_objects # after a failed POST Not much can be done about it, though. – James A. Rosen Oct 21 '08 at 16:40
Good points Ian & Gauis – Radar Nov 30 '08 at 3:50
vote up 1 vote down

Capture @obj in the flash hash as well, and then check for it in the new action.

@obj = SomeObject.new(params[:some_obj])

if @obj.save
  flash[:notice] = "ok"
  # success
else
  flash[:error] = @obj.errors.full_messages.collect { |msg| msg + "<br/>" }
  flash[:obj] = @obj
  # redirect to new form
end

In new:

@obj = flash[:obj] || MyClass.new
link|flag

Your Answer

Get an OpenID
or

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