zend 框架中所有控制器的基本控制器
我是 zend 框架的新手,我想问是否有可能有一个由所有其他控制器扩展的基本控制器?我想要一个基类,其中我将在我的项目中放置所有控制器的所有常用方法和属性。建议使用 zend 执行此操作还是有更好的方法?
I'm new to zend framework and I want to ask if is it possible to have a base controller that will be extended by all other controllers? I want to have a base class wherein I'll put all common methods and properties for all controllers I'll have on my project. Is it advisable to do this with zend or is there a better approach to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个扩展 Zend_Controller_Action 的基类。然后将其用作所有控制器的基类。
不过,根据您想要执行的操作,为每个控制器中您想要的功能类型创建操作助手可能更合适。
You could just make a base class which extends Zend_Controller_Action. Then use that as the base class for all of your controllers.
Although, depending on what you want to do, it might be more appropriate to make Action helpers for the kind of functionality you want in every controller.