Home  >  Article  >  What is the difference between mvvm mode and mvc mode?

What is the difference between mvvm mode and mvc mode?

青灯夜游
青灯夜游Original
2020-07-25 11:17:0814114browse

Difference: Controller in MVC has evolved into viewModel in MVVM. MVVM mainly solves the problems of reduced page rendering performance and slower loading speed caused by a large number of DOM operations in MVC. When and Model change frequently in MVVM, developers need to actively update to View.

What is the difference between mvvm mode and mvc mode?

1. What is MVVM?

Under the MVVM framework, the view and the model cannot communicate directly. They can only interact through the ViewModel. It can monitor data changes and then notify the view to automatically update. When the user When operating a view, the VM can also monitor changes in the view and then notify the data to make corresponding changes. This actually realizes two-way binding of data. And V and VM can communicate.

Picture examples are as follows:

What is the difference between mvvm mode and mvc mode?
##Advantages of MVVM mode:

Low coupling: View can change and modify independently of the Model , a ViewModel can be bound to different Views. When the View changes, the Model can remain unchanged, and when the Model changes, the View can also remain unchanged.

Reusability: You can put some view logic in a ViewModel, allowing many Views to reuse this view logic.

Independent development: Developers can focus on the development of business logic and data, and designers can focus on page design.

2. What is MVC?

MVC is one of the most widely used software architectures. Generally, MVC is divided into:

Model (model), View (view), Controller (controller). This is mainly based on the purpose of layering to separate each other's responsibilities.

View generally uses Controller to communicate with Model.

Controller is the coordinator of Model and View, and View and Model are not directly connected. Basically it's a one-way contact.

M and V refer to the same meaning as M and V in MVVM. C means Controller refers to the page business logic. MVC is one-way communication. That is, View and Model must be connected through Controller.

3. The difference between mvc and mvvm:

The difference between MVC and MVVM is not that VM completely replaces C. The purpose of ViewModel is to abstract the business displayed in the Controller. Logic, rather than replacing the Controller, other view operation services should still be implemented in the Controller. In other words, MVVM implements the reuse of business logic components.

- Controller in MVC evolves into ViewModel in MVVM

-MVVM displays the view layer through data instead of node operations

-MVVM mainly solves a large number of dom in MVC The operation reduces the page rendering performance, slows down the loading speed, and affects the user experience.

For more related knowledge, please visit:

PHP Chinese website!

The above is the detailed content of What is the difference between mvvm mode and mvc mode?. 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