PHP mvc 与分层设计
我有一些关于 MVC 的问题想澄清一下。在我们公司,我们使用两个内部开发的框架来构建 PHP 应用程序。一种是 MVC 框架,另一种采用三层设计,包括表示层、逻辑层和数据访问层。我们发现三层设计更加“面向对象友好”。问题是 MVC 中是否缺少某些东西,因为我们通常最终将 MVC 框架用于简单的 CMS 系统,而将其他框架用于逻辑密集型应用程序(例如会计应用程序),
谢谢
I have some questions regarding MVC that I would like to clarify. At our company we use two in-house developed frameworks for building PHP applications. One is an MVC framework while the other uses a 3-tier design with a presentation layer, a logic layer an a data access layer. We find the 3-tier design more "object oriented friendly". The question is if there is something we are missing in MVC, because we usually end up using the MVC framework for simple CMS systems and the other framework for more logic-intensive applications (like, for example an accounting application)
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这有点像是在比较苹果和橙子。没有“对”。 MVC 中的 V 和 C 是表示层,而业务逻辑和 DAL 都是 M 中的层。只要将它们分开,您的设计就没有理由不能使用 MVC。
That's somewhat comparing apples and oranges. There is no "versus". V and C in MVC are the presentation layer, whereas business logic and DAL is both layers in the M. As long as you keep these apart, there is no reason why your design cannot use MVC as well.