Zend Forms Module Include Paths(Zend Forms 模块包含路径)
问题描述
我正在使用 Zend 1.8.4 并设置一个简单的表单测试.我的表单类位于'./application/forms/SectorSearch.php',类名是
I'm using Zend 1.8.4 and setting up a simple form test. My form class is located in './application/forms/SectorSearch.php' and the class name is
<?php
class Form_SectorSearch extends Zend_Form
{...}
我的控制器在 init() 方法中创建了一个新表单
My controller creates a new form in the init() method
<?php
class SectorController extends Zend_Controller_Action
{
function init()
{
$this->initView();
$form = new Form_SectorSearch(array(
'method' => '/public/sector/search',
'action' => 'post'));
$this->view->form = $form;
}
..
}
但我收到此错误
Warning: Zend_Loader_Autoloader_Resource::include(/home/poconnell/projects/bhaa/application/forms/SectorSearch.php) [zend-loader-autoloader-resource.include]: failed to open stream: No such file or directory in /home/poconnell/projects/bhaa/library/Zend/Loader/Autoloader/Resource.php on line 178
Warning: Zend_Loader_Autoloader_Resource::include() [function.include]: Failed opening '/home/poconnell/projects/bhaa/application/forms/SectorSearch.php' for inclusion (include_path='/home/poconnell/projects/bhaa/library:/home/poconnell/projects/bhaa/application:.:/usr/share/php:/usr/share/pear') in /home/poconnell/projects/bhaa/library/Zend/Loader/Autoloader/Resource.php on line 178
Fatal error: Class 'Form_SectorSearch' not found in /home/poconnell/projects/bhaa/application/controllers/SectorController.php on line 19
我 100% 确定该类在包含路径上.
I'm 100% sure the class is on the include path.
我认为这是一个引导问题,这就是我加载默认模块的方式
I think this is a bootstraping issue, and this is how i'm loading the default module
protected function _initAutoload()
{
//Zend_Loader_Autoloader_Resource - Zend_Application_Module_Autoloader
$moduleLoader = new Zend_Application_Module_Autoloader(array(
'namespace' => '',
'basePath' => APPLICATION_PATH
));
return $moduleLoader;
}
我什至尝试使用这种模式,正如 Autloading 模块化表单 &Zend Framework 1.8 中的模型
I even tried using this pattern , as recommended by Autloading modular forms & models in Zend Framework 1.8
protected function _initAutoload()
{
//Zend_Loader_Autoloader_Resource - Zend_Application_Module_Autoloader
$moduleLoader = new Zend_Application_Module_Autoloader(array(
'namespace' => '',
'basePath' => APPLICATION_PATH,
'resourceTypes' => array (
'form' => array(
'path' => 'forms',
'namespace' => 'Form'))
);
return $moduleLoader;
}
但没有快乐.有什么想法吗?
but no joy. any ideas?
推荐答案
确保大小写完全匹配.该文件夹必须命名为 Forms,除非您为 Form
类指定了不同的目录并确保 SectorSearch 不是 sEcTorSEarcH.php代码>什么的
Make sure the case matches exactly.
The folder has to be named Forms unless you specified different directory for Form
classes and make sure SectorSearch is not sEcTorSEarcH.php
or something
这篇关于Zend Forms 模块包含路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Zend Forms 模块包含路径


- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01