ZF创建新控制器
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于控制器是 MVC 模式的重要组成部分,我建议阅读一些
这个。
简而言之:
因此,何时创建新控制器完全取决于您的应用程序。通常,模型中的每个数据库表都有一个控制器。控制器通常允许处理 CRUD 请求并将它们委托给您的模型处理它们。
查看
As the Controller is a crucial part of the MVC pattern, I suggest reading up a bit on
this.
In a nutshell:
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
当您想要有不同的页面时。您是否使用不同的逻辑或尝试完成完全不同的任务?
当你想要创建一个新的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.