MVC问题:直接模型<->查看通讯 - 为什么?

发布于 2024-10-29 16:01:48 字数 220 浏览 1 评论 0 原文

谁能告诉我,为什么在 MVC 模式中直接与视图通信模型,为什么不直接通过控制器?

http://en.wikipedia.org/wiki/Model %E2%80%93view%E2%80%93controller

can anybody tell me, why communicates the model direct with the view in the MVC pattern, and why not just throught the controller?

http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凡尘雨 2024-11-05 16:01:48

有时,使用控制器进行简单的视图/模型通信成本太高

在此处输入图像描述

如果您的视图仅显示原始数据而没有任何操作(过滤、可视化、修改...),那么它是很容易忘记控制器。

但这种行为非常容易被滥用,有时它会抹杀MVC的所有优势。

这就是 MVP 的用武之地:

MVP(模型-视图-演示者)切断了模型和视图之间的联系,所有事情都经过中间人(演示者)。

在此处输入图像描述

Sometimes it is too costly to use Controller for simple View/Model communication.

enter image description here

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).

enter image description here

我一直都在从未离去 2024-11-05 16:01:48

视图了解模型并将与模型交互。

  • 如果单击按钮,可能会向模型对象发送一条操作消息,以便获取
    做了某事。
  • 如果在输入字段中输入新值,则可能会向模型发送更新消息
    对象,以便赋予它新的值。
  • 如果显示需要一个值,则可能会向模型对象发送一条查询消息
    为了得到一个值。

The views know of the model and will interact with the model.

  • If a button is clicked an action message might be sent to a model object in order to get
    something done.
  • If a new value is typed into an entry field an update message might be sent to a model
    object in order to give it its new value.
  • If a value is needed for a display an enquiry message might be sent to a model object in
    order to get a value.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文