Home  >  Article  >  Backend Development  >  what is mvc

what is mvc

王林
王林Original
2020-05-10 14:59:283780browse

what is mvc

What is mvc?

The full name of MVC is Model View Controller, which is the abbreviation of model-view-controller. It is a software design model that uses a business logic, data, The interface display separation method organizes the code and gathers the business logic into a component. While improving and personalizing the interface and user interaction, there is no need to rewrite the business logic.

mvc programming model

MVC is a pattern that uses MVC (Model View Controller Model-View-Controller) to design and create Web applications:

Model (model) represents the core of the application (such as a database record list).

View displays data (database records).

Controller handles input (writes database records).

The MVC pattern provides full control over HTML, CSS, and JavaScript at the same time.

MVC layering helps manage complex applications because you can focus exclusively on one aspect at a time. For example, you can focus on view design without relying on business logic. It also makes application testing easier.

MVC layering also simplifies group development. Different developers can develop views, controller logic, and business logic simultaneously.

For more related questions, please visit php Chinese website.

The above is the detailed content of what is mvc. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn