What is the difference between MVC and MVP [duplicate]
Possible Duplicate:
What are MVP and MVC and what开发者_运维问答 is the difference?
I know MVC (Model-View-Controller). Can somebody precisely reason how MVP is different from MVC? Also Where is MVP desirable than MVC?
In MVP the view is not allowed to "think". The presenter contains all the logic.
look at this: http://code.google.com/webtoolkit/articles/mvp-architecture.html#presenter
精彩评论