Posts

Showing posts from October, 2022

Model - View - Controller (MVC)

Image
MODEL VIEW CONTROLLER    The   Model-View-Controller (MVC)   is an architectural pattern that separates an application into three main logical components: the   model , the view, and the controller. Each of these components are built to handle specific development aspects of an application. MVC is one of the most frequently used industry-standard web development framework to create scalable and extensible projects. MVC Components Following are the components of MVC − Model The Model component corresponds to all the data-related logic that the user works with. This can represent either the data that is being transferred between the View and Controller components or any other business logic-related data. For example, a Customer object will retrieve the customer information from the database, manipulate it and update it data back to the database or use it to render data. View The View component is used for all the UI logic of the application. For example, the Customer view will include al