Why is there a need to define a new method in RESTful controller, follow it up with a create method?
Google search didn't provide me the answer I was looking for. I understand the difference, but need to know why they are used the way they are.
|
Why is there a need to define a new method in RESTful controller, follow it up with a create method? Google search didn't provide me the answer I was looking for. I understand the difference, but need to know why they are used the way they are. |
||||
|
|
|
Within Rails' implementation of REST new and create are treated differently. An HTTP GET to An HTTP POST to |
||||
|
|
|
From the ActiveRecord::Base documentation: create(attributes = nil) {|object| ...}
new(attributes = nil) {|self if block_given?| ...}
So |
|||||||||||||
|
|
New instantiates a new Model instance, but it is not saved until the save method is called. Create does the same as new, but also saves it to the database. Sometimes you want to do stuff before saving something to the database, sometimes you just want to create and save it straight away. |
|||
|
|
The RESTful parts of Rails are made to be very close to how the HTTP protocol works. In the HTTP protocol, a GET request isn't supposed to modify any data. Logically, if you look at the way all of the RESTful actions in Rails work, they will match up with HTTP actions. A POST is for generating new data, so it is logically create. You use a GET to serve the form version of that or in other words, the new action. Index and show are also GETs, update is a PUT, and destroy is a DELETE in HTTP. In addition, it nicely separates the logic in the controller and gives you a smooth way to deal with errors (by re-rendering the new action with error messages). |
|||
|
|