April 13, 2013
Fat controller or Fat model???
When coding up an app using the MVC model, how much of logic do you actually code up in the controller?
The controller’s job in an MVC setup is to pick up action requests from the user acting on the View, pass them to the model for data manipulation and pull out the new view to show to the user.
Now, the question in my mind is: How much of logic do you actually throw into the controller?
Read more