Creating multiple models with form objects in Rails.
Often, when we start a new Rails app we start with simple controllers, and we start by generating everything with scaffolding. There is nothing wrong with this and it is a great way to be able to build your basic models and perform CRUD actions on them but it breaks down a bit when the controllers get more complex. How do you manage the creation of multiple models at once? More
Post a comment