#54 new
Jordan Carter

Handle Validation Errors

Reported by Jordan Carter | February 25th, 2009 @ 03:57 PM | in ObjectiveResource 1.1

Retrieve the error messages generated by Rails in the creation of new models.

if @person.save

    flash[:notice] = 'Person was successfully created.'
    format.html { redirect_to(@person) }
    format.xml  { render :xml => @person }
    format.json { render :json => @person }
  else
    format.html { render :action => "new" }
    format.xml  { render :xml => @person.errors, :status => :unprocessable_entity }
    format.json { render :json => @person.errors, :status => :unprocessable_entity }
  end

Comments and changes to this ticket

Please Sign in or create a free account to add a new ticket.

With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.

New-ticket Create new ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป

Port of Rails' ActiveResource framework to the iPhone.

Shared Ticket Bins

People watching this ticket

Referenced by

Pages