zend 框架中所有控制器的基本控制器

发布于 2024-08-14 19:12:14 字数 109 浏览 1 评论 0原文

我是 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 技术交流群。

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

发布评论

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

评论(1

眸中客 2024-08-21 19:12:14

您可以创建一个扩展 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.

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