ZF创建新控制器

发布于 2024-08-23 07:16:37 字数 92 浏览 4 评论 0原文

我使用 ZF 制作了第一个项目,使用了 Zend_Tool 组件。 对于索引控制器创建了一些操作,并且它们运行良好。 但我的问题是,你什么时候创建一个新的控制器? 谢谢!

I made my first project with ZF, used the Zend_Tool component.
For the index controller a created some actions, and they work well.
But my question is, when do you create a new controller?
thanks!

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

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

发布评论

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

评论(2

执手闯天涯 2024-08-30 07:16:37

由于控制器是 MVC 模式的重要组成部分,我建议阅读一些
这个。

简而言之:

控制器接收输入并通过调用模型对象来启动响应。

因此,何时创建新控制器完全取决于您的应用程序。通常,模型中的每个数据库表都有一个控制器。控制器通常允许处理 CRUD 请求并将它们委托给您的模型处理它们。

查看

As the Controller is a crucial part of the MVC pattern, I suggest reading up a bit on
this
.

In a nutshell:

The controller receives input and initiates a response by making calls on model objects.

So when to create a new controller totally depends on your application. Often, there is one controller per database table in your model. The controller usually would allow for handling CRUD requests and delegating them to your model to process them.

Check out

注定孤独终老 2024-08-30 07:16:37

当您想要有不同的页面时。您是否使用不同的逻辑或尝试完成完全不同的任务?

当你想要创建一个新的Controller时,你应该很清楚,这是因为你正在做一些完全不同的事情。

When you want to have a different page. Are you using different logic or trying to fulfil a completely different task?

It should be quite clear to you when you want to create a new Controller, it is because you are doing something completely different.

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