restful rails model validation - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:55:21Z http://stackoverflow.com/feeds/question/345707 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/345707/restful-rails-model-validation 2 restful rails model validation Josh Moore 2008-12-06T01:33:08Z 2008-12-06T08:06:16Z <p>I am working on a rails application (I have some experience with rails). But, this time I am using RESTful to build it. I am wondering how do I validate my models in a RESTful fashion? What I mean by that is when a user enters data into a form, but the model validations prevent the model from being created what is a RESTful way to redirect the user back to the <code>new</code> action <strong>with the data they entered still present in the form?</strong></p> http://stackoverflow.com/questions/345707/restful-rails-model-validation/345747#345747 0 Answer by Hates_ for restful rails model validation Hates_ 2008-12-06T01:59:24Z 2008-12-06T01:59:24Z <p>Whether developing in a RESTful or regular fashion, the backend implementation remains generally the same. Just as in a non-RESTful app, you would simply re-render the create page with the form with the instance the user is trying to create. Really with REST, all you are doing is creating a uniform set of URLs which respond to different HTTP requests, everything else remains the same.</p> http://stackoverflow.com/questions/345707/restful-rails-model-validation/346018#346018 3 Answer by CJ Bryan for restful rails model validation CJ Bryan 2008-12-06T06:43:11Z 2008-12-06T06:43:11Z <p>REST only affects your controllers and routes!</p> <p>Model validations in a RESTful Rails app are the same as the validations in any other Rails app.</p> http://stackoverflow.com/questions/345707/restful-rails-model-validation/346067#346067 0 Answer by Ed for restful rails model validation Ed 2008-12-06T07:47:47Z 2008-12-06T07:47:47Z <p>use the scaffold generator to view the example codes on restful controllers </p> http://stackoverflow.com/questions/345707/restful-rails-model-validation/346076#346076 3 Answer by Tim K. for restful rails model validation Tim K. 2008-12-06T08:06:16Z 2008-12-06T08:06:16Z <p>Josh - you mention wanting to know how to redirect the user back to create if it errored out. If you are use to earlier versions of Rails just make sure you are using the form_for helper rather then the start_form_tag from early. Your controller code will look pretty similar to how you might be used to... for example (a Customer model):</p> <pre><code>def create @customer = Customer.new(params[:customer]) if @customer.save flash[:notice] = 'Customer was successfully created.' redirect_to(@customer) else render :action =&gt; "new" end end </code></pre> <p>You'll notice now the <code>redirect_to(@customer)</code> that forwards to the record that was created in the transaction. But on failure it's the same old render :action.</p>