无法访问模块控制器中的模块表单
我有一个测试模块。在测试模块中,我在表单文件夹中有一个表单。
myproject/application/modules/test/forms/TestForm.php
class Test_Form_TestForm extends Zend_Form {
//form elements
}
myproject/application/modules/test/controllers/TestController.php
class Test_TestController extends Zend_Controller_Action {
public function indexAction() {
$this->view->form = new Test_Form_TestForm(); // this is generating error
}
} // end class
控制器中的表单初始化生成以下错误:
Fatal error: Class 'Test_Form_TestForm' not found in C:\wamp\www\student\application\modules\notification\controllers\NotificationController.php on line 16
如何使该表单可以在控制器中访问。相同类型的案例正在使用默认控制器。我知道我必须使用 Form_ 指示器在引导程序中注册我的模块,但不知道确切的语法。
I have a test module. In test module I have a Form in forms folder.
myproject/application/modules/test/forms/TestForm.php
class Test_Form_TestForm extends Zend_Form {
//form elements
}
myproject/application/modules/test/controllers/TestController.php
class Test_TestController extends Zend_Controller_Action {
public function indexAction() {
$this->view->form = new Test_Form_TestForm(); // this is generating error
}
} // end class
Form initialization in controller is generating following error:
Fatal error: Class 'Test_Form_TestForm' not found in C:\wamp\www\student\application\modules\notification\controllers\NotificationController.php on line 16
How to make this form accessable in controller. Same type of case is working with default controller. I know I have to register my module in bootstrap with Form_ indicator but dont know exact syntax.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您还可以在一个 Bootstrap 文件中的单独函数中初始化多个模块,例如:
You can also initialize multiple modules in a separate function in one Bootstrap file like:
为了让
Zend Autoloader
适用于您的模块,您需要为所有模块提供引导程序,并初始化模块资源。因此,在您的
application/modules/test/Bootstrap.php
中:Upd:
在您的
application/configs/application.ini
中:更多信息关于模块中的自动加载此处
In order for
Zend Autoloader
to work for your modules, you need to have bootstraps for all of your modules, and also modules resource initialized.So, in your
application/modules/test/Bootstrap.php
:Upd:
And in your
application/configs/application.ini
:More info about autoloading in modules here
Vika 关于如何设置模块自动加载器的答案是正确的。
您的错误表明在NotificationController控制器下的通知模块中找不到表单类。
因此,您需要
在
application/modules/notification/Bootstrap.php 中为通知模块提供引导类:
Vika's answer is correct on how to setup modules autoloader.
Your error states that the form class cannot be found in notification module under NotificationController controller.
So you need to have bootstrap class for the notification module
In your
application/modules/notification/Bootstrap.php:
我不知道这是否是最好的方法,但它确实有效。
在你的引导程序中
I don't know if this is the best way, but it works.
In your bootstrap
维卡的回答似乎是正确的。
如果您仍然遇到问题,请尝试修改您的 application.ini
如果您在资源列表中指定确切的模块名称,Zend 将自动神奇地注册表单和其他资源自动加载器。在调试情况下,应该触发 modules/test/Boostrap.php 以及其中的任何 _init 方法。玩得开心。
Vika's answer seems to be correct.
If you still having problems, try modify your application.ini
If you specify exact module names in resource list, Zend will auto-magically register the Form and other resource auto-loaders. In debugging case modules/test/Boostrap.php should be triggered and any _init method inside. Have fun.