将现有 Zend Action Controller 移至模块中

发布于 2024-12-10 08:27:18 字数 732 浏览 0 评论 0原文

我开始开发一个管理 Zend PHP 应用程序,但后来在项目中被告知该应用程序需要支持面向公众的界面。我想将当前的控制器和视图移至单独的模块中,但不确定解决此问题的最佳方法。

如果我只是使用 zf create 生成模块并将所有资产复制到新模块中,并尝试导航到模块中的任何这些操作,Zend 似乎无法找到它们,因为它会抛出以下错误:

Next exception 'Zend_Controller_Exception' with message 'Invalid controller specified (error)#0 /opt/zf/library/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#1 /opt/zf/library/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front->dispatch()
#2 /opt/z in /opt/zf/library/Zend/Controller/Plugin/Broker.php on line 336

我唯一的猜测是我正在破坏 Zend 使用 zf create 为新控制器设置的默认路由,但我对 Zend 非常陌生,无法找到任何相关信息。

I began developing an administrative Zend PHP application but was informed later into the project that the same application needs to support a public facing interface. I would like to move my current controllers and views into a separate module and am unsure of the best way to approach this.

If I simply generate the module using zf create and copy all of my assets into the new module and attempt to navigate to any of those actions within the module Zend can't seem to find them as it throws the following error:

Next exception 'Zend_Controller_Exception' with message 'Invalid controller specified (error)#0 /opt/zf/library/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#1 /opt/zf/library/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front->dispatch()
#2 /opt/z in /opt/zf/library/Zend/Controller/Plugin/Broker.php on line 336

My only guess is that I'm breaking the default routes that Zend sets up for new controllers using zf create but am very new to Zend and have been unable to find any information on this.

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

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

发布评论

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

评论(1

九公里浅绿 2024-12-17 08:27:18

您必须在控制器前添加模块名称前缀:{ModuleName}_{ControllerName}Controller(如果这不是您的默认模块)。但文件名保持不变。 .zfproject.xml 不会影响您的应用程序。该文件仅包含 zf-tool 的信息。

You have to prefix your controller with the module name: {ModuleName}_{ControllerName}Controller (if this isn't your default module). The filename remains the same however. The .zfproject.xml doesn't influence your application. This file only contains information for the zf-tool.

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