I want to alter the data and save it then to the database when using the new / create function of the app.
feedback
|
|
You should use active callbacks, as the two other answers stated. The *before_create* is definitely the one you are looking for. Always do that kind of logic in the model, and not in the controller. Rails mantra (one of many) is "thin controller, fat model", which enable code reuse more easily. You can check the active callbacks documentation at : http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html Also, here is an example of what you want to achieve
| |||||
feedback
|
Should do the trick. | |||
feedback
|
| |||
|
feedback
|
|
Your question has already been answered above, but I really recommend you check out the official Ruby on Rails guides: http://guides.rubyonrails.org/ The guides are easy to comprehend and cover many parts of Rails. Your question is answered in the 'Active Record Validations and Callbacks' section. | |||
feedback
|