LINK

Wednesday, 24 January 2018

What is the MVC pattern?

  • The Model-View-Controller (MVC) software architectural pattern
  •  It separates an application into three main groups of components: Models, Views, and Controllers. 
  • Using this pattern, user requests are routed to a Controller which is responsible for working with the Model to perform user actions and/or retrieve results of queries. The Controller chooses the View to display to the user, and provides it with any Model data it requires.

No comments:

Post a Comment