浅谈MVC、MVP、MVVM架构模式的区别和联系

浅谈MVC、MVP、MVVM架构模式的区别和联系

学习了:http://www.cnblogs.com/guwei4037/p/5591183.html

http://blog.csdn.net/ttf1993/article/details/49405329

MVC: Model->View->Controller->Model

MVP: View <--> Presenter <--> Model

MVVM: View (ViewController)<--> ViewModel <--> Model  ViewController从ViewModel获取数据,不跟Modle打交道;

使用ViewModel实现视图与模型的双向绑定;

原文地址:https://www.cnblogs.com/stono/p/7008315.html