在 CakePHP 中导入控制器或模型更好吗?

发布于 2024-09-27 00:30:15 字数 44 浏览 2 评论 0原文

在 CakePHP 应用程序中,导入有权访问模型的控制器还是模型本身更好?

In a CakePHP application, is it better to import Controllers that have access to models or the Models themselves?

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

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

发布评论

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

评论(2

ペ泪落弦音 2024-10-04 00:30:15

您永远不应该导入控制器。控制器只是控制数据流/输入输出的“中心”,它们本身不任何事情。控制器中不应该有任何重要的、独特的逻辑或数据,因此永远不需要导入它们。控制器也不是模型或类似事物的接口。事实上,您应该尽可能地将模型与控制器分离。如果您对该模型感兴趣,请导入该模型。

You should never import controllers. Controllers are simply "hubs" that control the data flow/input-output, they don't do anything by themselves. You shouldn't have any important, unique logic or data in controllers, and hence should never have a need to import them. Controllers are also not the interface to models or anything like that. In fact, you should decouple your models from the controller as much as possible. If you're interested in the model, import the model.

鸠书 2024-10-04 00:30:15

绝对是模型

definitely the models

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文