MVC问题:直接模型<->查看通讯 - 为什么?
谁能告诉我,为什么在 MVC 模式中直接与视图通信模型,为什么不直接通过控制器?
http://en.wikipedia.org/wiki/Model %E2%80%93view%E2%80%93controller
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有时,使用
控制器
进行简单的视图/模型
通信成本太高。如果您的视图仅显示原始数据而没有任何操作(过滤、可视化、修改...),那么它是很容易忘记控制器。
但这种行为非常容易被滥用,有时它会抹杀MVC的所有优势。
这就是 MVP 的用武之地:
MVP(模型-视图-演示者)切断了模型和视图之间的联系,所有事情都经过中间人(演示者)。
Sometimes it is too costly to use
Controller
for simpleView/Model
communication.If your view just shows raw data without any operation (filtration, visualization, modification ...) it is easy to forget about Controller.
But this behavior is so abuse-able sometimes it kills all of the advantages of MVC.
And this where MVP comes in:
MVP (Model-View-Presenter) cuts the connection between model and view and every thing pass through man-in-the-middle (Presenter).
视图了解模型并将与模型交互。
做了某事。
对象,以便赋予它新的值。
为了得到一个值。
The views know of the model and will interact with the model.
something done.
object in order to give it its new value.
order to get a value.