Model-View-Controller : A Pattern Based on Functional Area
The Model-View-Controller pattern is one that is common and often seen in frameworks. It provides us with a nice place to “hang” our code. The Model-View-Controller Pattern Defined We have another pattern that contains three parts. In this case, we have the model, the view, and the controller. These each has an area of functionality they contain and are intended to act without regard to the other areas. The effect is not unlike other patterns that divide and delegate functionality. The MVC pattern divides by interaction with a user. We have the View that displays information to the user. Then, we have the Controller that handles input. Finally, we have the Model that addresses the core functionality and data. Clearly... Read more