MVC 中视图和模型之间的通信
在阅读了许多不同的资料后,我对 MVC 模式中视图和模型应该如何通信感到非常困惑。据我了解,这篇文章的接受答案 和 Apple 的这篇文章 说两者的通信应该通过控制器完成。虽然维基百科中的 MVC 页面, ASP.NET MVC页面,并且MSDN 中的这篇文章显示在那里是视图和模型之间的直接关联。所以根据这里的答案,苹果的文章是什么指的实际上是MVP而不是MVC吗?谢谢您的帮助!
After reading from many different sources, I am very confused about how View and Model should communicate in the MVC pattern. To my understanding, the accepted answer of this post and this article from Apple are saying the communication of the two should be done through controller. While the MVC page in Wikipedia, the ASP.NET MVC page, and this article in MSDN are showing there is a direct association between View and Model. So according to the answer in here, what the article from Apple is referring to is actually MVP not MVC then? Thank you for any help!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案不止一个。
最终你可以做任何适合你需要的事情。
我使用控制器 + ViewModels 连接到视图。
视图从不使用模型。这正是控制器给他的。
steven sandarson 的书第 49 页对所有模型都有很好的解释
(MVC 的变体)。
There is more than one answer.
Eventually you can do whatever you thing suits your needs.
I use a controller + ViewModels to connect to the view.
The view never use the model. just what the controller gives him.
There is a nice explanation of all models in steven sandarson book, Page 49
(variation on MVC).