What is An MVC Framework?

Working of MVC


MVC stands for Model-View-Controller.It is an Architecture which seperates any application into three main parts:-

Model:-This part deals with all the data related jobs in the application.This can represent either the data that is being transferred between the View and Controller components or any other business logic-related data.

View:-The View component is used for all the UI logic of the application. For example, the Customer view will include all the UI components such as text boxes, dropdowns, etc. that the final user interacts with.

Controller:-Controllers act as an interface between Model and View components to process all the business logic and incoming requests, manipulate data using the Model component and interact with the Views to render the final output. 


Some Popular MVC based Frameworks are:-

1)Django:-It is python based web framework.It is known for it's ability to generate high quality web apps with very less effort.




2)Angular:-Angular is one of the most popular Javascript frameworks out there.It is great for developing SPAs(Single Page Applications).


3)ASP.NET MVC:-It is a backend framework developed on .NET by Microsoft.




Thanks for Reading

No comments: