开发者

Clarification :MVC,MVP,MVVM

开发者 https://www.devze.com 2023-02-05 14:51 出处:网络
I am readi开发者_C百科ng the difference between MVC,MVP,MVVM Source: here My doubt is ,the diagrams (MVP) (MVVM) showbidirectional arrow between Modle and Presenter,Model and ViewModel.

I am readi开发者_C百科ng the difference between MVC,MVP,MVVM

Source: here

Clarification :MVC,MVP,MVVM

My doubt is ,the diagrams (MVP) (MVVM) show bidirectional arrow between Modle and Presenter,Model and ViewModel.

Presenter and ViewModel obviously aware of Model.But does it mean Model is aware of Presenter and ViewModel?


Presenter and ViewModel obviously aware of Model.But does it mean Model is aware of Presenter and ViewModel?

No. At least, the way I view these patterns, the Model should (ideally) be unaware of anything except itself. I tried to highlight that in my discussion of MVVM by only showing a uni-directional arrow to the Model.

However, many people use an arrow going both ways to/from the Model to represent events raised by the Model. It somewhat depends on how you see this - the Model will likely need to notify other layers of changes within itself. Depending on the language/framework, this may look like the model "talking" to other layers. However, I try to be very careful to keep this completely neutral from the Model's point of view. For example, in C#, I just use an event, where the types are all Model-specific. It knows "something" may be listening to the event, but does not have any knowledge of what comprises that "something".

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号